odin-default-js-exercises/node_modules/cross-spawn/index.js

40 lines
1.2 KiB
JavaScript
Raw Normal View History

2017-12-15 18:56:14 +00:00
'use strict';
const cp = require('child_process');
const parse = require('./lib/parse');
const enoent = require('./lib/enoent');
2017-12-15 18:56:14 +00:00
function spawn(command, args, options) {
// Parse the arguments
const parsed = parse(command, args, options);
2017-12-15 18:56:14 +00:00
// Spawn the child process
const spawned = cp.spawn(parsed.command, parsed.args, parsed.options);
2017-12-15 18:56:14 +00:00
// Hook into child process "exit" event to emit an error if the command
// does not exists, see: https://github.com/IndigoUnited/node-cross-spawn/issues/16
enoent.hookChildProcess(spawned, parsed);
return spawned;
}
function spawnSync(command, args, options) {
// Parse the arguments
const parsed = parse(command, args, options);
2017-12-15 18:56:14 +00:00
// Spawn the child process
const result = cp.spawnSync(parsed.command, parsed.args, parsed.options);
2017-12-15 18:56:14 +00:00
// Analyze if the command does not exist, see: https://github.com/IndigoUnited/node-cross-spawn/issues/16
2017-12-15 18:56:14 +00:00
result.error = result.error || enoent.verifyENOENTSync(result.status, parsed);
return result;
}
module.exports = spawn;
module.exports.spawn = spawn;
module.exports.sync = spawnSync;
module.exports._parse = parse;
module.exports._enoent = enoent;