Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
forEach(this.query, (val, key) => {
params[key] = tryJSONparse(val);
});
} else {
Object.keys(process.env).forEach((key) => {
const configKey = getConfigKey(key);
if (!configKey) return;
set(config, configKey, tryJSONparse(process.env[key]));
});
a => tryJSONparse(a),
);