UNPKG
tiny-debounce
Version:
latest (0.1.1)
0.1.1
tiny debounce function alternative to lodash.debounce
tiny-debounce
/
index.js
12 lines
(11 loc)
•
256 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
module
.
exports
=
function
debounce
(
fn, delay
) {
var
timeoutID =
null
return
function
(
) {
clearTimeout
(timeoutID)
var
args =
arguments
var
that =
this
timeoutID =
setTimeout
(
function
(
) { fn.
apply
(that, args) }, delay) } }