Skip to content

Commit

Permalink
Update src/utils/time.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
donnyquixotic committed Dec 12, 2023
1 parent cb0f203 commit 8ec6da6
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/utils/time.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ export const debounce = <T extends (...args: any[]) => ReturnType<T>>(
callback: T,
timeout: number,
): ((...args: Parameters<T>) => void) => {
console.log('debouncing');
let timer: ReturnType<typeof setTimeout>;

return (...args: Parameters<T>) => {
Expand Down

0 comments on commit 8ec6da6

Please sign in to comment.