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
465 B
21 lines
465 B
var List = require('../common/List'); |
|
|
|
module.exports = function clone(node) { |
|
var result = {}; |
|
|
|
for (var key in node) { |
|
var 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; |
|
};
|
|
|