UNPKG

shell-ahk

Version:

`Lodash`/`jQuery` for `AHK`.

16 lines (11 loc) 362 B
# @ts-check import $clearTimeout from './clearTimeout' import $setTimeout from './setTimeout' $iDebounce = 0 $tDebounce = {} ###* @type import('../type/module').Debounce ### export default ($func, $wait) -> $iDebounce++ return ($index = $iDebounce) -> $clearTimeout $tDebounce[$index] $tDebounce[$index] = $setTimeout $func, $wait