Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
commands: test.commands.map(c => {
if (Commands[c.command]) {
let newCmd = Object.assign({}, c)
const type = Commands[c.command]
if (
type.target &&
(type.target.name === ArgTypes.script.name ||
type.target.name === ArgTypes.conditionalExpression.name)
) {
newCmd.target = migrateScript(newCmd.target)
}
return newCmd
}
return c
}),
})