- 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
13 lines
262 B
JavaScript
13 lines
262 B
JavaScript
'use strict';
|
|
|
|
var $isNaN = require('./isNaN');
|
|
|
|
/** @type {import('./isFinite')} */
|
|
module.exports = function isFinite(x) {
|
|
return (typeof x === 'number' || typeof x === 'bigint')
|
|
&& !$isNaN(x)
|
|
&& x !== Infinity
|
|
&& x !== -Infinity;
|
|
};
|
|
|