Dawn/tools/utils/args.js
2021-10-17 11:08:40 -07:00

12 lines
215 B
JavaScript

const args = process.argv.splice(2).reduce((x,y) => {
const bits = y.split('=');
const name = bits[0].replace('--', '');
const val = bits[1];
x[name] = val;
return x;
}, {});
module.exports = {
args
};