UNPKG
v-debounce
Version:
latest (0.2.0)
0.2.0
0.1.2
0.1.1
0.1.0
Input debounce directive for Vue.js
retrospirit.net
coreusa/v-debounce
v-debounce
/
debounce.js
13 lines
(11 loc)
•
264 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
module
.
exports
=
function
(
fn, delay
) {
let
timeoutID =
null
return
function
(
) {
clearTimeout
(timeoutID)
const
args =
arguments
const
self =
this
timeoutID =
setTimeout
(
function
(
) { fn.
apply
(self, args) }, delay) } }