- 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
11 lines
280 B
JavaScript
11 lines
280 B
JavaScript
'use strict';
|
|
|
|
var bind = require('function-bind');
|
|
|
|
var $apply = require('./functionApply');
|
|
var $call = require('./functionCall');
|
|
var $reflectApply = require('./reflectApply');
|
|
|
|
/** @type {import('./actualApply')} */
|
|
module.exports = $reflectApply || bind.call($call, $apply);
|