• File: inspector-log.js
  • Full Path: /var/www/paytek-africa.com/node_modules/finalhandler/node_modules/debug/src/inspector-log.js
  • Date Modified: 07/19/2022 5:05 PM
  • File size: 373 bytes
  • MIME-type: text/plain
  • Charset: utf-8
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;
}