PHP 8.1.33
Preview: copy-tree.js Size: 770 B
//lib/node_modules/npm/lib/install/copy-tree.js

'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
}

Directory Contents

Dirs: 1 × Files: 36

Name Size Perms Modified Actions
action DIR
- drwxr-xr-x 2024-03-03 22:36:29
Edit Download
202 B lrw-r--r-- 2021-03-10 14:36:36
Edit Download
5.52 KB lrw-r--r-- 2021-03-10 14:36:36
Edit Download
375 B lrw-r--r-- 2021-03-10 14:36:36
Edit Download
360 B lrw-r--r-- 2021-03-10 14:36:36
Edit Download
204 B lrw-r--r-- 2021-03-10 14:36:36
Edit Download
8.24 KB lrw-r--r-- 2021-03-10 14:36:36
Edit Download
1.85 KB lrw-r--r-- 2021-03-10 14:36:36
Edit Download
770 B lrw-r--r-- 2021-03-10 14:36:36
Edit Download
2.18 KB lrw-r--r-- 2021-03-10 14:36:36
Edit Download
30.32 KB lrw-r--r-- 2021-03-10 14:36:36
Edit Download
9.12 KB lrw-r--r-- 2021-03-10 14:36:36
Edit Download
775 B lrw-r--r-- 2021-03-10 14:36:36
Edit Download
1021 B lrw-r--r-- 2021-03-10 14:36:36
Edit Download
1.28 KB lrw-r--r-- 2021-03-10 14:36:36
Edit Download
635 B lrw-r--r-- 2021-03-10 14:36:36
Edit Download
702 B lrw-r--r-- 2021-03-10 14:36:36
Edit Download
628 B lrw-r--r-- 2021-03-10 14:36:36
Edit Download
8.87 KB lrw-r--r-- 2021-03-10 14:36:36
Edit Download
175 B lrw-r--r-- 2021-03-10 14:36:36
Edit Download
618 B lrw-r--r-- 2021-03-10 14:36:36
Edit Download
763 B lrw-r--r-- 2021-03-10 14:36:36
Edit Download
1.24 KB lrw-r--r-- 2021-03-10 14:36:36
Edit Download
674 B lrw-r--r-- 2021-03-10 14:36:36
Edit Download
185 B lrw-r--r-- 2021-03-10 14:36:36
Edit Download
172 B lrw-r--r-- 2021-03-10 14:36:36
Edit Download
259 B lrw-r--r-- 2021-03-10 14:36:36
Edit Download
4.52 KB lrw-r--r-- 2021-03-10 14:36:36
Edit Download
1.85 KB lrw-r--r-- 2021-03-10 14:36:36
Edit Download
3.67 KB lrw-r--r-- 2021-03-10 14:36:36
Edit Download
621 B lrw-r--r-- 2021-03-10 14:36:36
Edit Download
1.02 KB lrw-r--r-- 2021-03-10 14:36:36
Edit Download
5.91 KB lrw-r--r-- 2021-03-10 14:36:36
Edit Download
1.87 KB lrw-r--r-- 2021-03-10 14:36:36
Edit Download
2.73 KB lrw-r--r-- 2021-03-10 14:36:36
Edit Download
3.10 KB lrw-r--r-- 2021-03-10 14:36:36
Edit Download
1.00 KB lrw-r--r-- 2021-03-10 14:36:36
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).