1.0.2 • Published 6 years ago

@zcorky/debounce v1.0.2

Weekly downloads
4
License
MIT
Repository
github
Last release
6 years ago

debounce

NPM version Coverage Status Dependencies Build Status license issues

Do action after a repeated action has completed.

Install

$ npm install @zcorky/debounce

Usage

// import
import debounce from '@zcorky/debounce';

// debounce
function resize(e) {
  console.log('width', window.innerWidth);
  console.log('height', window.innerHeight);
}

window.onresize = debounce(resize, 200);

Relatived