@jugar/debounce-throttle
v0.0.1
Published
Debouncing and throttling toolkits.
Downloads
2
Readme
debounce-throttle
- NPM Install
npm install @jugar/json-beautify@latest
- Usage
import { debounce } from '@jugar/debounce-throttle'
export const greeting = debounce((...params: unknown[]) => {
const [str1, str2] = params as (string | undefined)[]
console.log(str1, str2)
}
greeting('hello', 'world')