You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
454 B
21 lines
454 B
import { List } from './List.js'; |
|
|
|
export function clone(node) { |
|
const result = {}; |
|
|
|
for (const key in node) { |
|
let value = node[key]; |
|
|
|
if (value) { |
|
if (Array.isArray(value) || value instanceof List) { |
|
value = value.map(clone); |
|
} else if (value.constructor === Object) { |
|
value = clone(value); |
|
} |
|
} |
|
|
|
result[key] = value; |
|
} |
|
|
|
return result; |
|
}
|
|
|