Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
urlParams = [sessionId, ...urlParams];
}
urlParams.reverse();
let res;
try {
let jsonParamArgs = Object.keys(jsonParams).map(k => jsonParams[k]);
const args = [...jsonParamArgs, ...urlParams]
log.info(`Executing command ${cmdName} with args ${JSON.stringify(args)}`);
res = await driver.executeCommand(cmdName, ...args);
if (typeof res.value === 'undefined') {
res.value = null;
}
log.info(`Result: ${JSON.stringify(res.value)}`);
cb(null, {success: {jsonValue: Buffer.from(JSON.stringify(res.value))}});
} catch (e) {
log.error(`Encountered error running command: ${e}`);
cb(null, {error: {error: e.code, msg: e.message}});
}
}