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.
26 lines
493 B
26 lines
493 B
2 years ago
|
'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;
|