Lines Matching refs:args
74 async exec (...args) {
75 const [res, err] = await super.exec(...args).then((r) => [r]).catch(e => [null, e])
89 originalOutput (...args) {
90 super.output(...args)
93 originalOutputError (...args) {
94 super.outputError(...args)
97 output (...args) {
98 outputs.push(args)
101 outputError (...args) {
102 outputErrors.push(args)
285 exec: (args) => npm.exec(command, args),
286 completion: (args) => Cmd.completion(args, npm),