1.0.2 • Published 4 years ago

@jsdecorators/debounce v1.0.2

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

@jsdecorators/debounce

Encapsulate lodash.debounce to a decorator. For further details please check lodash/debounce.js

install

~$ yarn add @jsdecorators/debounce

or

~$ npm i @jsdecorators/debounce

how to use

import debounce from '@jsdecorators/debounce';

class MyClass {

  @debounce(100)
  onScroll() {
    console.log('onScroll is called!');
  }

}