UNPKG

jiny

Version:

Jiny - runs tests/jobs in parallel

20 lines (12 loc) 315 B
var Class = require('plus.class'); var Cli = new Class({ init: function (comander) { this.comander = comander; }, run: function () { this.comander.parse(process.argv); if (!this.comander.args.length) this.comander.outputHelp(); } }); module.exports = Cli;