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