easy-debounce
v1.1.1
Published
this is a re-created debounce version with less codes in ES6 built with Rollup
Downloads
2
Readme
easyDebounce
This is a re-created debounce version with less codes in ES6 built with Rollup.
Installation
Node JS (>=8.4.0)
npm install easy-debounce
or
yarn add easy-debounce
browser
<script src="https://unpkg.com/[email protected]/dist/easyDebounce.umd.js"></script>
Usage
ES Modules
import debounce from 'easy-debounce'
common js
const debounce = require('easy-debounce')
browser js
var debounce = window.easyDebounce;
API
debounce(fn, wait, [ immediate || false ])
License
MIT