UNPKG
dom-size-monitor
Version:
latest (1.0.0)
1.0.0
监听元素大小变化
dom-size-monitor
/
src
/
debounce.js
13 lines
(9 loc)
•
191 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
export
default
(fn, delay =
30
) => {
let
timer =
null
return
function
(
...args
) {
clearTimeout
(timer) timer =
setTimeout
(
() =>
{ fn.
apply
(
this
, args) }, delay) } }