UNPKG

npm-consider

Version:

Check npm package dependencies, stats and impact on your package before installing it

16 lines (13 loc) 254 B
/** * @file exec command with args */ const spawn = require('child_process').spawn; /** * @param {string} command * @param {string[]} args */ module.exports = function exec(command, args) { spawn(command, args, { stdio: `inherit` }); };