Skip to content

Commit b84b6a0

Browse files
committed
fix : lint
1 parent 0673696 commit b84b6a0

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

src/utils/debounce/debounce.test.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1138,7 +1138,10 @@ describe(debounce, () => {
11381138
const spy = vi.fn();
11391139
const obj = {
11401140
value: 1,
1141-
update: debounce(function update(this: { value: number }, step: number) {
1141+
update: debounce(function update(
1142+
this: { value: number },
1143+
step: number,
1144+
) {
11421145
spy(this.value, step);
11431146
if (step === 1) {
11441147
// trailing 実行中に再帰呼び出し

0 commit comments

Comments
 (0)