From 71a60a0359eda13221f2314c0b1c33c86f240fd3 Mon Sep 17 00:00:00 2001 From: Vendicated Date: Fri, 16 Sep 2022 22:59:34 +0200 Subject: Add .editorconfig; reformat project --- src/utils/debounce.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/utils/debounce.ts') diff --git a/src/utils/debounce.ts b/src/utils/debounce.ts index 6a1756b..f001b7b 100644 --- a/src/utils/debounce.ts +++ b/src/utils/debounce.ts @@ -4,4 +4,4 @@ export function debounce(func: T, delay = 300): T { clearTimeout(timeout); timeout = setTimeout(() => { func(...args); }, delay); } as any; -} \ No newline at end of file +} -- cgit