Skip to content

Commit 8ebf2d4

Browse files
committed
fix: lint
1 parent 58c9f52 commit 8ebf2d4

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/util.ts

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ export function debounce(func: () => void, wait: number, immediate?) {
1919
}
2020

2121
const debounced: any = (...args) => {
22+
// eslint-disable-next-line @typescript-eslint/no-this-alias
2223
context = this;
2324
timestamp = Date.now();
2425
const callNow = immediate && !timeout;

0 commit comments

Comments
 (0)