update modules

This commit is contained in:
s2
2020-06-08 08:50:28 +02:00
parent ae4aaf2668
commit 27635904a6
477 changed files with 20385 additions and 35036 deletions

24
node_modules/jake/lib/utils/logger.js generated vendored Normal file
View File

@@ -0,0 +1,24 @@
let util = require('util');
let logger = new (function () {
let _output = function (type, out) {
let quiet = typeof jake != 'undefined' && jake.program &&
jake.program.opts && jake.program.opts.quiet;
let msg;
if (!quiet) {
msg = typeof out == 'string' ? out : util.inspect(out);
console[type](msg);
}
};
this.log = function (out) {
_output('log', out);
};
this.error = function (out) {
_output('error', out);
};
})();
module.exports = logger;