CoolFace
Apppublic

opusdev/vector-similarity-api

sourceHugging Faceupdated 5mo agoView on Hugging Face
1likes
inspector-log.js16 linesDownload Raw Back to src
1module.exports = inspectorLog;2 3// black hole4const 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}16