Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/chenxsan/debounce

Just another debounce
https://github.com/chenxsan/debounce

Last synced: 23 days ago
JSON representation

Just another debounce

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)
```