- 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
6 lines
126 B
JavaScript
6 lines
126 B
JavaScript
'use strict';
|
|
|
|
var inspect = require('../');
|
|
var obj = [1, 2, function f(n) { return n + 5; }, 4];
|
|
console.log(inspect(obj));
|