From 1ebc55c72a1a17293bbf4ad86e0177a10a794750 Mon Sep 17 00:00:00 2001 From: Joris Date: Sun, 17 Sep 2023 12:23:47 +0200 Subject: Make app packageable --- src/view/client/lib/functions.ts | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 src/view/client/lib/functions.ts (limited to 'src/view/client/lib/functions.ts') 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) - } -} -- cgit v1.2.3