Skip to content

Commit 338068d

Browse files
author
Meena
committed
prettier
1 parent 5c3b547 commit 338068d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/util/cloneObject.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,11 @@ export default function cloneObject<T>(source: T): T {
1111

1212
for (const key in source) {
1313
// @ts-ignore:next-line
14-
if ("jQuery" in window && window.jQuery && source[key] instanceof window.jQuery) {
14+
if (
15+
"jQuery" in window &&
16+
window.jQuery &&
17+
source[key] instanceof window.jQuery
18+
) {
1519
temp[key] = source[key];
1620
} else {
1721
temp[key] = cloneObject(source[key]);

0 commit comments

Comments
 (0)