Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Your IP : 18.116.10.48
'use strict'
module.exports = function (tree) {
return copyTree(tree, {})
}
function copyTree (tree, cache) {
if (cache[tree.path]) return cache[tree.path]
var newTree = cache[tree.path] = Object.create(tree)
copyModuleList(newTree, 'children', cache)
newTree.children.forEach(function (child) {
child.parent = newTree
})
copyModuleList(newTree, 'requires', cache)
copyModuleList(newTree, 'requiredBy', cache)
return newTree
}
function copyModuleList (tree, key, cache) {
var newList = []
tree[key].forEach(function (child) {
newList.push(copyTree(child, cache))
})
tree[key] = newList
}
|