Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
//@ts-check
const { anyPass } = require('mojiscript')
const { isCommand } = require('../../lib/command')
/**
* @type { import('../../types/strategy').StrategyTest }
*/
const test = anyPass([isCommand(''), isCommand('noop')])
/**
* @type { import('../../types/strategy').StrategyExec }
*/
const exec = () => []
module.exports = {
sort: 10,
test,
exec
}