node-es5
Version:
A shim to always run node in es5 proper "strict mode"
22 lines (18 loc) • 472 B
JavaScript
function () {
"use strict";
var spawn = require('child_process').spawn
, stricty
, args = process.argv
;
// node === args[0]
// /path/to/index.js === args[1]
args.shift();
args[0] = '--use_strict';
//console.log(args);
//stricty = spawn('node', args, { detached: true, stdio: 'inherit' });
stricty = spawn('node', args, { stdio: 'inherit' });
stricty.on('exit', function (code) {
process.exit(code);
});
}());
(