From 06f045e90bb57c36738e58ee6830e2a2391bc6a3 Mon Sep 17 00:00:00 2001 From: Joris Date: Sat, 16 Sep 2023 18:28:16 +0200 Subject: Migrate CLI to python --- src/lib/functions.ts | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 src/lib/functions.ts (limited to 'src/lib/functions.ts') diff --git a/src/lib/functions.ts b/src/lib/functions.ts deleted file mode 100644 index 21fdad9..0000000 --- a/src/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