dieumercimvemba's picture
download
raw
373 Bytes
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;
}

Xet Storage Details

Size:
373 Bytes
·
Xet hash:
fca0c37faa338c8e16e2d798026bdf643e2715643fb2c657138d13b9a8aacf61

Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.