implemetation of AtomCommandline to preserve args

This commit is contained in:
deepak1556 2015-03-17 18:25:53 +05:30 committed by Robo
parent 8aae7c4440
commit 399f47ef0f
12 changed files with 104 additions and 59 deletions

4
spec/fixtures/module/process_args.js vendored Normal file
View file

@ -0,0 +1,4 @@
process.on('message', function() {
process.send(process.argv);
process.exit(0);
});