cordova-plugin-cescit-integ.../scripts/helpers/is_verbose.js
2020-12-31 16:38:20 +08:00

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;
};