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 : 3.144.167.32
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 /
node_modules /
pacote /
Delete
Unzip
Name
Size
Permission
Date
Action
lib
[ DIR ]
drwxr-xr-x
2024-12-16 14:12
node_modules
[ DIR ]
drwxr-xr-x
2024-12-16 14:12
CHANGELOG.md
43.39
KB
-rw-r--r--
2021-03-10 14:36
LICENSE
1.08
KB
-rw-r--r--
2021-03-10 14:36
README.md
9.6
KB
-rw-r--r--
2021-03-10 14:36
extract.js
2.99
KB
-rw-r--r--
2021-03-10 14:36
index.js
262
B
-rw-r--r--
2021-03-10 14:36
manifest.js
1.12
KB
-rw-r--r--
2021-03-10 14:36
package.json
3.35
KB
-rw-r--r--
2021-03-10 14:36
packument.js
822
B
-rw-r--r--
2021-03-10 14:36
prefetch.js
1.93
KB
-rw-r--r--
2021-03-10 14:36
tarball.js
1.97
KB
-rw-r--r--
2021-03-10 14:36
Save
Rename
'use strict' const fetchManifest = require('./lib/fetch').manifest const finalizeManifest = require('./lib/finalize-manifest') const optCheck = require('./lib/util/opt-check') const pinflight = require('promise-inflight') const npa = require('npm-package-arg') module.exports = manifest function manifest (spec, opts) { opts = optCheck(opts) spec = npa(spec, opts.where) const label = [ spec.name, spec.saveSpec || spec.fetchSpec, spec.type, opts.cache, opts.registry, opts.scope ].join(':') return pinflight(label, () => { const startTime = Date.now() return fetchManifest(spec, opts).then(rawManifest => { return finalizeManifest(rawManifest, spec, opts) }).then(manifest => { if (opts.annotate) { manifest._from = spec.saveSpec || spec.raw manifest._requested = spec manifest._spec = spec.raw manifest._where = opts.where } const elapsedTime = Date.now() - startTime opts.log.silly('pacote', `${spec.type} manifest for ${spec.name}@${spec.saveSpec || spec.fetchSpec} fetched in ${elapsedTime}ms`) return manifest }) }) }