Initial commit
[yaffs-website] / node_modules / flagged-respawn / test / bin / exit_code.js
1 #!/usr/bin/env node
2
3 const flaggedRespawn = require('../../');
4
5 flaggedRespawn(['--harmony'], process.argv, function (ready) {
6
7   if (ready) {
8     setTimeout(function () {
9       process.exit(100);
10     }, 100);
11   }
12
13 });