whoami7 - Manager
:
/
proc
/
thread-self
/
root
/
proc
/
self
/
root
/
lib
/
node_modules
/
npm
/
lib
/
install
/
Upload File:
files >> //proc/thread-self/root/proc/self/root/lib/node_modules/npm/lib/install/is-extraneous.js
'use strict' module.exports = isExtraneous function isExtraneous (tree) { var result = !isNotExtraneous(tree) return result } function topHasNoPjson (tree) { var top = tree while (!top.isTop) top = top.parent return top.error } function isNotExtraneous (tree, isCycle) { if (!isCycle) isCycle = {} if (tree.isTop || tree.userRequired) { return true } else if (isCycle[tree.path]) { return topHasNoPjson(tree) } else { isCycle[tree.path] = true return tree.requiredBy && tree.requiredBy.some(function (node) { return isNotExtraneous(node, Object.create(isCycle)) }) } }
Copyright ©2021 || Defacer Indonesia