spawn-sync
This used to be a polyfill for require('child_process').spawnSync
but now all actively maintained node versions already support spawnSync
, so this is just a stub that re-exports spawnSync
.
Usage
You should remove this library from your dependencies and just do:
var spawnSync = spawnSync; var result = ; if resultstatus !== 0 processstderr; process; else processstdout; processstderr;
License
MIT