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.
25 lines
493 B
25 lines
493 B
'use strict'; |
|
|
|
const List = require('./List.cjs'); |
|
|
|
function clone(node) { |
|
const result = {}; |
|
|
|
for (const key in node) { |
|
let value = node[key]; |
|
|
|
if (value) { |
|
if (Array.isArray(value) || value instanceof List.List) { |
|
value = value.map(clone); |
|
} else if (value.constructor === Object) { |
|
value = clone(value); |
|
} |
|
} |
|
|
|
result[key] = value; |
|
} |
|
|
|
return result; |
|
} |
|
|
|
exports.clone = clone;
|
|
|