push all website files

This commit is contained in:
Jacob Levine
2019-01-06 13:14:45 -06:00
parent d7301e26c3
commit d2d5d4c04e
15662 changed files with 2166516 additions and 0 deletions

30
website/node_modules/npm/lib/install/copy-tree.js generated vendored Normal file
View File

@@ -0,0 +1,30 @@
'use strict'
var createNode = require('./node.js').create
module.exports = function (tree) {
return copyTree(tree, {})
}
function copyTree (tree, cache) {
if (cache[tree.path]) { return cache[tree.path] }
var newTree = cache[tree.path] = createNode(Object.assign({}, 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 = []
if (tree[key]) {
tree[key].forEach(function (child) {
const copy = copyTree(child, cache)
if (copy) {
newList.push(copy)
}
})
}
tree[key] = newList
}