UNPKG
th-vue-material
Version:
latest (0.7.2-rc.1)
0.7.2
0.7.2-rc.1
0.7.1
0.7.1-rc.8
0.7.1-rc.7
0.7.1-rc.4
0.7.1-rc.3
0.7.1-rc.2
0.7.1-rc.1
Material Design for Vue.js
vuematerial.github.io
marcosmoura/vue-material
th-vue-material
/
src
/
core
/
utils
/
throttle.js
17 lines
(13 loc)
•
249 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
const
debounce
= (
callback, limit
) => {
var
wait =
false
;
return
() =>
{
if
(!wait) { callback.
call
(); wait =
true
;
window
.
setTimeout
(
() =>
{ wait =
false
; }, limit); } }; };
export
default
debounce;