diff options
author | Joris | 2023-02-12 13:05:25 +0100 |
---|---|---|
committer | Joris | 2023-02-12 13:05:25 +0100 |
commit | 25ecb1cb75b7b5b584ad223e12d74c3e3ee7da89 (patch) | |
tree | 54118b78bd783812725a6a6cd43f3b4d47ffe006 /src/lib/functions.ts | |
parent | 31acb6e43c07066e9a5ba404ea6c59201937c05a (diff) |
Add textual search on title, subtitle and authors
Diffstat (limited to 'src/lib/functions.ts')
-rw-r--r-- | src/lib/functions.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/lib/functions.ts b/src/lib/functions.ts new file mode 100644 index 0000000..0ec9f00 --- /dev/null +++ b/src/lib/functions.ts @@ -0,0 +1,7 @@ +export function debounce(func: Function, timeout: number) { + let timer: any + return (...args: any) => { + clearTimeout(timer) + timer = setTimeout(() => { func.apply(this, args) }, timeout) + } +} |