- Add debounced state updates for title and content (500ms delay) - Immediate UI updates with delayed history saving - Prevent one-letter-per-undo issue - Add cleanup for debounce timers on unmount
16 lines
373 B
JavaScript
16 lines
373 B
JavaScript
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;
|
|
}
|