Skip to content

Commit 056dbf5

Browse files
committed
style: Remove redundant comments and whitespace
1 parent bc43c92 commit 056dbf5

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

packages/bippy/src/rdt-hook.ts

+4-8
Original file line numberDiff line numberDiff line change
@@ -107,14 +107,10 @@ export const installRDTHook = (
107107
hasRanHack = true;
108108
return -0;
109109
}
110-
// biome-ignore lint/suspicious/noExplicitAny: perf
111-
// biome-ignore lint/style/noArguments: perf
112-
return originalWindowHasOwnProperty.apply(this, arguments as any);
113-
} catch {
114-
// biome-ignore lint/suspicious/noExplicitAny: perf
115-
// biome-ignore lint/style/noArguments: perf
116-
return originalWindowHasOwnProperty.apply(this, arguments as any);
117-
}
110+
} catch {}
111+
// biome-ignore lint/suspicious/noExplicitAny: perf
112+
// biome-ignore lint/style/noArguments: perf
113+
return originalWindowHasOwnProperty.apply(this, arguments as any);
118114
},
119115
configurable: true,
120116
writable: true,

0 commit comments

Comments
 (0)