1.0.6 • Published 2 years ago

debounce-basic v1.0.6

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

debounce-basic

Simple debounce implementation to save your time

API

callBack: Type: Function This is what you want to debounce

delay: Type: Number

Usage Example:

import debounce from 'debounce-basic'

const func = debounce(() => {
    console.log("debounce");
}, 2500);

func();
1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago