consume-argv.js 178 B

123456
  1. 'use strict';
  2. require('./options').set(JSON.parse(process.argv[2]));
  3. // Remove arguments received from fork.js and leave those specified by the user.
  4. process.argv.splice(2, 2);