Skip to content

Commit a4d9fbd

Browse files
author
Meena
committed
Fix type error
1 parent 338068d commit a4d9fbd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/util/cloneObject.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export default function cloneObject<T>(source: T): T {
1414
if (
1515
"jQuery" in window &&
1616
window.jQuery &&
17-
source[key] instanceof window.jQuery
17+
source[key] instanceof (window.jQuery as any)
1818
) {
1919
temp[key] = source[key];
2020
} else {

0 commit comments

Comments
 (0)