Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
constructor() {
super();
const { ENGAGES_API_DOMAIN } = process.env;
this.baseURL = ENGAGES_API_DOMAIN;
this.httpCache = new HTTPCache();
}
constructor() {
super();
const INTEGRATIONS_API_DOMAIN = getEnv({ name: 'INTEGRATIONS_API_DOMAIN' });
this.baseURL = INTEGRATIONS_API_DOMAIN;
this.httpCache = new HTTPCache();
}
constructor() {
super();
const ENGAGES_API_DOMAIN = getEnv({ name: 'ENGAGES_API_DOMAIN' });
this.baseURL = ENGAGES_API_DOMAIN;
this.httpCache = new HTTPCache();
}