mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-06 06:44:50 +00:00
12 lines
246 B
JavaScript
Vendored
12 lines
246 B
JavaScript
Vendored
export 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)
|
|
}
|
|
}
|