We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 338068d commit a4d9fbdCopy full SHA for a4d9fbd
src/util/cloneObject.ts
@@ -14,7 +14,7 @@ export default function cloneObject<T>(source: T): T {
14
if (
15
"jQuery" in window &&
16
window.jQuery &&
17
- source[key] instanceof window.jQuery
+ source[key] instanceof (window.jQuery as any)
18
) {
19
temp[key] = source[key];
20
} else {
0 commit comments