aboutsummaryrefslogtreecommitdiff
path: root/web/pw-server/src/lib/utils.ts
diff options
context:
space:
mode:
authorIlion Beyst <ilion.beyst@gmail.com>2022-02-22 18:48:59 +0100
committerIlion Beyst <ilion.beyst@gmail.com>2022-02-22 18:48:59 +0100
commit006ce356220c1a089fc468bbfdc0dea819cd9288 (patch)
treeb191563147dfda22a7b3fe4726fc65d81e78e874 /web/pw-server/src/lib/utils.ts
parent060b585da1d6beb7dc214d1eb70bcd73ac41ed86 (diff)
downloadplanetwars.dev-006ce356220c1a089fc468bbfdc0dea819cd9288.tar.xz
planetwars.dev-006ce356220c1a089fc468bbfdc0dea819cd9288.zip
persist bot code in localstorage
Diffstat (limited to 'web/pw-server/src/lib/utils.ts')
-rw-r--r--web/pw-server/src/lib/utils.ts9
1 files changed, 9 insertions, 0 deletions
diff --git a/web/pw-server/src/lib/utils.ts b/web/pw-server/src/lib/utils.ts
new file mode 100644
index 0000000..aab9734
--- /dev/null
+++ b/web/pw-server/src/lib/utils.ts
@@ -0,0 +1,9 @@
+export function debounce(func: Function, timeout: number = 300) {
+ let timer: ReturnType<typeof setTimeout>;
+ return (...args: any[]) => {
+ clearTimeout(timer);
+ timer = setTimeout(() => {
+ func.apply(this, args);
+ }, timeout);
+ };
+}