This commit is contained in:
Paolo Arena
2021-09-02 21:29:24 +02:00
parent 04a9ce2232
commit 1c3df0fac1
21 changed files with 1291 additions and 673 deletions

View File

@@ -9,7 +9,7 @@ export type Options = {
export function debounce<F extends Procedure>(
func: F,
waitMilliseconds: number = 50,
waitMilliseconds = 50,
options: Options = {
isImmediate: false,
},