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/view/client/lib/functions.ts | 7 +++++++ 1 file changed, 7 insertions(+) create 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 new file mode 100644 index 0000000..21fdad9 --- /dev/null +++ b/src/view/client/lib/functions.ts @@ -0,0 +1,7 @@ +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