Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
init(this: any) {
this.argument = new Argument({});
},
parser: {
value: options.inputArguments.map(function (opt) {
return new Argument(opt);
})
});
finish: function () {
this.argument = new Argument(this.argument);
}
}
value: options.outputArguments.map(function (opts) {
return new Argument(opts);
})
});