PHP 8.2.30
Preview: copy-tree.js Size: 881 B
/proc/self/root/opt/alt/alt-nodejs9/root/usr/lib/node_modules/npm/lib/install/copy-tree.js

'use strict'
var createNode = require('./node.js').create
module.exports = function (tree, filter) {
  return copyTree(tree, {}, filter)
}

function copyTree (tree, cache, filter) {
  if (filter && !filter(tree)) { return null }
  if (cache[tree.path]) { return cache[tree.path] }
  var newTree = cache[tree.path] = createNode(Object.assign({}, tree))
  copyModuleList(newTree, 'children', cache, filter)
  newTree.children.forEach(function (child) {
    child.parent = newTree
  })
  copyModuleList(newTree, 'requires', cache, filter)
  copyModuleList(newTree, 'requiredBy', cache, filter)
  return newTree
}

function copyModuleList (tree, key, cache, filter) {
  var newList = []
  if (tree[key]) {
    tree[key].forEach(function (child) {
      const copy = copyTree(child, cache, filter)
      if (copy) {
        newList.push(copy)
      }
    })
  }
  tree[key] = newList
}

Directory Contents

Dirs: 1 × Files: 33

Name Size Perms Modified Actions
action DIR
- drwxr-xr-x 2024-03-03 22:42:04
Edit Download
202 B lrw-r--r-- 2021-09-28 11:28:09
Edit Download
5.52 KB lrw-r--r-- 2021-09-28 11:28:09
Edit Download
324 B lrw-r--r-- 2021-09-28 11:28:09
Edit Download
360 B lrw-r--r-- 2021-09-28 11:28:09
Edit Download
204 B lrw-r--r-- 2021-09-28 11:28:09
Edit Download
1.85 KB lrw-r--r-- 2021-09-28 11:28:09
Edit Download
881 B lrw-r--r-- 2021-09-28 11:28:09
Edit Download
1.81 KB lrw-r--r-- 2021-09-28 11:28:09
Edit Download
26.41 KB lrw-r--r-- 2021-09-28 11:28:09
Edit Download
8.52 KB lrw-r--r-- 2021-09-28 11:28:09
Edit Download
775 B lrw-r--r-- 2021-09-28 11:28:09
Edit Download
1021 B lrw-r--r-- 2021-09-28 11:28:09
Edit Download
427 B lrw-r--r-- 2021-09-28 11:28:09
Edit Download
628 B lrw-r--r-- 2021-09-28 11:28:09
Edit Download
7.24 KB lrw-r--r-- 2021-09-28 11:28:09
Edit Download
175 B lrw-r--r-- 2021-09-28 11:28:09
Edit Download
618 B lrw-r--r-- 2021-09-28 11:28:09
Edit Download
763 B lrw-r--r-- 2021-09-28 11:28:09
Edit Download
1.19 KB lrw-r--r-- 2021-09-28 11:28:09
Edit Download
462 B lrw-r--r-- 2021-09-28 11:28:09
Edit Download
185 B lrw-r--r-- 2021-09-28 11:28:09
Edit Download
172 B lrw-r--r-- 2021-09-28 11:28:09
Edit Download
259 B lrw-r--r-- 2021-09-28 11:28:09
Edit Download
4.52 KB lrw-r--r-- 2021-09-28 11:28:09
Edit Download
1.85 KB lrw-r--r-- 2021-09-28 11:28:09
Edit Download
1.97 KB lrw-r--r-- 2021-09-28 11:28:09
Edit Download
621 B lrw-r--r-- 2021-09-28 11:28:09
Edit Download
1.02 KB lrw-r--r-- 2021-09-28 11:28:09
Edit Download
5.60 KB lrw-r--r-- 2021-09-28 11:28:09
Edit Download
1.87 KB lrw-r--r-- 2021-09-28 11:28:09
Edit Download
2.45 KB lrw-r--r-- 2021-09-28 11:28:09
Edit Download
3.10 KB lrw-r--r-- 2021-09-28 11:28:09
Edit Download
1.00 KB lrw-r--r-- 2021-09-28 11:28:09
Edit Download

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