5 lines
192 B
JavaScript
5 lines
192 B
JavaScript
|
module.exports = function () {
|
||
|
return this.opts && this.opts.options && this.opts.options.verbose ||
|
||
|
typeof this.cmdLine === 'string' && this.cmdLine.indexOf(' -verbose') > -1;
|
||
|
};
|