/
lostSun
/
project-client-server-apps
Обзор
Документация
Войти
/
lostSun
/
project-client-server-apps
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
node_modules/jake/lib/utils/logger.js
24 строки
505 B
1lostsun
initial commit
05 май 2025, 11:35
05 май 2025, 11:35
fe8f535
Код
Авторство
О чём код?
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;