Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chenxsan/debounce
Just another debounce
https://github.com/chenxsan/debounce
Last synced: 23 days ago
JSON representation
Just another debounce
- Host: GitHub
- URL: https://github.com/chenxsan/debounce
- Owner: chenxsan
- Created: 2019-08-14T14:09:23.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-11T01:57:47.000Z (almost 2 years ago)
- Last Synced: 2023-05-07T10:29:41.249Z (over 1 year ago)
- Language: JavaScript
- Homepage: https://blog.zfanw.com/JavaScript-debounce/
- Size: 2.44 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 19
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
Just another debounce.
## Usage
```js
import debounce, { debounce_leading } from 'debounce-js'
function fnc() {}
const fn = debounce(fnc, 200)
```