cordova-plugin-cescit-integ.../scripts/helpers/is_verbose.js

5 lines
192 B
JavaScript
Raw Normal View History

2020-12-31 16:38:20 +08:00
module.exports = function () {
return this.opts && this.opts.options && this.opts.options.verbose ||
typeof this.cmdLine === 'string' && this.cmdLine.indexOf(' -verbose') > -1;
};