A comprehensive JavaScript utility library with TypeScript support.
npm install utils-jsimport { debounce, deepClone, isEmpty } from 'utils-js';
const debounced = debounce(() => console.log('Called'), 300);
const cloned = deepClone({ a: 1, b: { c: 2 } });
isEmpty([]); // trueCreates a debounced function.
Creates a throttled function.
Deep clones an object or array.
Checks if value is empty.
Returns random number between min and max.
npm test