From a110c200e86d2325af07167531fac0f61d9681a0 Mon Sep 17 00:00:00 2001 From: Joris Guyonvarch Date: Fri, 26 Dec 2025 18:41:26 +0100 Subject: Switch to GUI to manage the library Allow to regroup the CLI and the view into one unique tool. --- library/client/lib/functions.ts | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 library/client/lib/functions.ts (limited to 'library/client/lib/functions.ts') diff --git a/library/client/lib/functions.ts b/library/client/lib/functions.ts deleted file mode 100644 index 21fdad9..0000000 --- a/library/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