We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc43c92 commit 056dbf5Copy full SHA for 056dbf5
packages/bippy/src/rdt-hook.ts
@@ -107,14 +107,10 @@ export const installRDTHook = (
107
hasRanHack = true;
108
return -0;
109
}
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
115
116
117
- }
+ } catch {}
+ // biome-ignore lint/suspicious/noExplicitAny: perf
+ // biome-ignore lint/style/noArguments: perf
+ return originalWindowHasOwnProperty.apply(this, arguments as any);
118
},
119
configurable: true,
120
writable: true,
0 commit comments