layui-js/node_modules/flagged-respawn/test/bin/exit_code.js
2017-08-21 08:50:25 +08:00

14 lines
219 B
JavaScript

#!/usr/bin/env node
const flaggedRespawn = require('../../');
flaggedRespawn(['--harmony'], process.argv, function (ready) {
if (ready) {
setTimeout(function () {
process.exit(100);
}, 100);
}
});