diff options
Diffstat (limited to 'src/lib/function.ts')
-rw-r--r-- | src/lib/function.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/lib/function.ts b/src/lib/function.ts new file mode 100644 index 0000000..db7b436 --- /dev/null +++ b/src/lib/function.ts @@ -0,0 +1,7 @@ +export function debounce(func: any, timeout = 300){ + let timer: any; + return (...args: any) => { + clearTimeout(timer); + timer = setTimeout(() => { func.apply(this, args); }, timeout); + }; +} |