layui-js/node_modules/flagged-respawn/test/bin/exit_code.js

14 lines
219 B
JavaScript
Raw Normal View History

2017-08-21 00:50:25 +00:00
#!/usr/bin/env node
const flaggedRespawn = require('../../');
flaggedRespawn(['--harmony'], process.argv, function (ready) {
if (ready) {
setTimeout(function () {
process.exit(100);
}, 100);
}
});