/
sturg872
/
test-clone
Обзор
Документация
Войти
/
sturg872
/
test-clone
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
node_modules/debug/src/inspector-log.js
15 строк
373 B
Андрей Соловьев
first commit
01 май 2024, 11:55
01 май 2024, 11:55
3387fd3
Код
Авторство
О чём код?
module.exports = inspectorLog; // black hole const nullStream = new (require('stream').Writable)(); nullStream._write = () => {}; /** * Outputs a `console.log()` to the Node.js Inspector console *only*. */ function inspectorLog() { const stdout = console._stdout; console._stdout = nullStream; console.log.apply(console, arguments); console._stdout = stdout; }