source: trip-planner-front/node_modules/express/node_modules/debug/src/inspector-log.js

Last change on this file was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 373 bytes
Line 
1module.exports = inspectorLog;
2
3// black hole
4const nullStream = new (require('stream').Writable)();
5nullStream._write = () => {};
6
7/**
8 * Outputs a `console.log()` to the Node.js Inspector console *only*.
9 */
10function inspectorLog() {
11 const stdout = console._stdout;
12 console._stdout = nullStream;
13 console.log.apply(console, arguments);
14 console._stdout = stdout;
15}
Note: See TracBrowser for help on using the repository browser.