Linux cambridge2.uknoc5.com 4.18.0-553.27.1.lve.1.el8.x86_64 #1 SMP Wed Nov 20 15:58:00 UTC 2024 x86_64
LiteSpeed
Server IP : 92.48.92.37 & Your IP : 18.218.72.220
Domains :
Cant Read [ /etc/named.conf ]
User : drazizulhaq
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
node_modules /
npm /
lib /
install /
Delete
Unzip
Name
Size
Permission
Date
Action
action
[ DIR ]
drwxr-xr-x
2024-12-16 14:12
access-error.js
202
B
-rw-r--r--
2021-03-10 14:36
actions.js
5.52
KB
-rw-r--r--
2021-03-10 14:36
and-add-parent-to-errors.js
375
B
-rw-r--r--
2021-03-10 14:36
and-finish-tracker.js
360
B
-rw-r--r--
2021-03-10 14:36
and-ignore-errors.js
204
B
-rw-r--r--
2021-03-10 14:36
audit.js
8.24
KB
-rw-r--r--
2021-03-10 14:36
check-permissions.js
1.85
KB
-rw-r--r--
2021-03-10 14:36
copy-tree.js
770
B
-rw-r--r--
2021-03-10 14:36
decompose-actions.js
2.18
KB
-rw-r--r--
2021-03-10 14:36
deps.js
30.32
KB
-rw-r--r--
2021-03-10 14:36
diff-trees.js
9.12
KB
-rw-r--r--
2021-03-10 14:36
exists.js
775
B
-rw-r--r--
2021-03-10 14:36
flatten-tree.js
1021
B
-rw-r--r--
2021-03-10 14:36
fund.js
1.28
KB
-rw-r--r--
2021-03-10 14:36
get-requested.js
635
B
-rw-r--r--
2021-03-10 14:36
has-modern-meta.js
702
B
-rw-r--r--
2021-03-10 14:36
inflate-bundled.js
628
B
-rw-r--r--
2021-03-10 14:36
inflate-shrinkwrap.js
8.87
KB
-rw-r--r--
2021-03-10 14:36
is-dev-dep.js
175
B
-rw-r--r--
2021-03-10 14:36
is-extraneous.js
618
B
-rw-r--r--
2021-03-10 14:36
is-fs-access-available.js
763
B
-rw-r--r--
2021-03-10 14:36
is-only-dev.js
1.24
KB
-rw-r--r--
2021-03-10 14:36
is-only-optional.js
674
B
-rw-r--r--
2021-03-10 14:36
is-opt-dep.js
185
B
-rw-r--r--
2021-03-10 14:36
is-prod-dep.js
172
B
-rw-r--r--
2021-03-10 14:36
module-staging-path.js
259
B
-rw-r--r--
2021-03-10 14:36
mutate-into-logical-tree.js
4.52
KB
-rw-r--r--
2021-03-10 14:36
node.js
1.85
KB
-rw-r--r--
2021-03-10 14:36
read-shrinkwrap.js
3.67
KB
-rw-r--r--
2021-03-10 14:36
realize-shrinkwrap-specifier.js
621
B
-rw-r--r--
2021-03-10 14:36
report-optional-failure.js
1.02
KB
-rw-r--r--
2021-03-10 14:36
save.js
5.91
KB
-rw-r--r--
2021-03-10 14:36
update-package-json.js
1.87
KB
-rw-r--r--
2021-03-10 14:36
validate-args.js
2.73
KB
-rw-r--r--
2021-03-10 14:36
validate-tree.js
3.1
KB
-rw-r--r--
2021-03-10 14:36
writable.js
1
KB
-rw-r--r--
2021-03-10 14:36
Save
Rename
'use strict' var defaultTemplate = { package: { version: '', dependencies: {}, devDependencies: {}, optionalDependencies: {} }, loaded: false, children: [], requiredBy: [], requires: [], missingDeps: {}, missingDevDeps: {}, phantomChildren: {}, path: null, realpath: null, location: null, userRequired: false, save: false, saveSpec: null, isTop: false, fromBundle: false } function isLink (node) { return node && node.isLink } function isInLink (node) { return node && (node.isInLink || node.isLink) } var create = exports.create = function (node, template, isNotTop) { if (!template) template = defaultTemplate Object.keys(template).forEach(function (key) { if (template[key] != null && typeof template[key] === 'object' && !(template[key] instanceof Array)) { if (!node[key]) node[key] = {} return create(node[key], template[key], true) } if (node[key] != null) return node[key] = template[key] }) if (!isNotTop) { // isLink is true for the symlink and everything inside it. // by contrast, isInLink is true for only the things inside a link if (node.isLink == null) node.isLink = isLink(node.parent) if (node.isInLink == null) node.isInLink = isInLink(node.parent) if (node.fromBundle == null) { node.fromBundle = false } } return node } exports.reset = function (node) { reset(node, new Set()) } function reset (node, seen) { if (seen.has(node)) return seen.add(node) var child = create(node) // FIXME: cleaning up after read-package-json's mess =( if (child.package._id === '@') delete child.package._id child.isTop = false child.requiredBy = [] child.requires = [] child.missingDeps = {} child.missingDevDeps = {} child.phantomChildren = {} child.location = null child.children.forEach(function (child) { reset(child, seen) }) }