X7ROOT File Manager
Current Path:
/opt/alt/alt-nodejs9/root/usr/lib/node_modules/npm/lib/utils
opt
/
alt
/
alt-nodejs9
/
root
/
usr
/
lib
/
node_modules
/
npm
/
lib
/
utils
/
📁
..
📄
ansi-trim.js
(211 B)
📄
child-path.js
(290 B)
📁
completion
📄
completion.sh
(1.74 KB)
📄
correct-mkdir.js
(3.04 KB)
📄
deep-sort-object.js
(363 B)
📄
depr-check.js
(451 B)
📄
did-you-mean.js
(495 B)
📄
error-handler.js
(6.05 KB)
📄
error-message.js
(10.21 KB)
📄
escape-arg.js
(673 B)
📄
escape-exec-path.js
(777 B)
📄
gently-rm.js
(484 B)
📄
get-publish-config.js
(919 B)
📄
git.js
(1.26 KB)
📄
gunzip-maybe.js
(552 B)
📄
is-registry.js
(294 B)
📄
is-windows-bash.js
(129 B)
📄
is-windows-shell.js
(153 B)
📄
is-windows.js
(59 B)
📄
lifecycle-cmd.js
(496 B)
📄
lifecycle.js
(364 B)
📄
link.js
(234 B)
📄
locker.js
(1.81 KB)
📄
map-to-registry.js
(2.79 KB)
📄
metrics-launch.js
(1.05 KB)
📄
metrics.js
(2.03 KB)
📄
module-name.js
(935 B)
📄
move.js
(290 B)
📄
no-progress-while-running.js
(541 B)
📄
output.js
(210 B)
📄
package-id.js
(399 B)
📄
parse-json.js
(592 B)
📄
perf.js
(562 B)
📄
pick-manifest-from-registry-metadata.js
(905 B)
📄
pulse-till-done.js
(783 B)
📄
read-local-package.js
(329 B)
📄
read-user-info.js
(1.75 KB)
📄
save-stack.js
(349 B)
📄
spawn.js
(1.38 KB)
📄
temp-filename.js
(173 B)
📄
umask.js
(343 B)
📄
unix-format-path.js
(85 B)
📄
unsupported.js
(2.21 KB)
📄
usage.js
(576 B)
📄
warn-deprecated.js
(556 B)
Editing: unsupported.js
'use strict' var semver = require('semver') var supportedNode = [ {ver: '4', min: '4.7.0'}, {ver: '6', min: '6.0.0'}, {ver: '7', min: '7.0.0'}, {ver: '8', min: '8.0.0'}, {ver: '9', min: '9.0.0'} ] var knownBroken = '<4.7.0' var checkVersion = exports.checkVersion = function (version) { var versionNoPrerelease = version.replace(/-.*$/, '') return { version: versionNoPrerelease, broken: semver.satisfies(versionNoPrerelease, knownBroken), unsupported: !semver.satisfies(versionNoPrerelease, supportedNode.map(function (n) { return '^' + n.min }).join('||')) } } exports.checkForBrokenNode = function () { var nodejs = checkVersion(process.version) if (nodejs.broken) { console.error('ERROR: npm is known not to run on Node.js ' + process.version) supportedNode.forEach(function (rel) { if (semver.satisfies(nodejs.version, rel.ver)) { console.error('Node.js ' + rel.ver + " is supported but the specific version you're running has") console.error(`a bug known to break npm. Please update to at least ${rel.min} to use this`) console.error('version of npm. You can find the latest release of Node.js at https://nodejs.org/') process.exit(1) } }) var supportedMajors = supportedNode.map(function (n) { return n.ver }).join(', ') console.error("You'll need to upgrade to a newer version in order to use this") console.error('version of npm. Supported versions are ' + supportedMajors + '. You can find the') console.error('latest version at https://nodejs.org/') process.exit(1) } } exports.checkForUnsupportedNode = function () { var nodejs = checkVersion(process.version) if (nodejs.unsupported) { var log = require('npmlog') var supportedMajors = supportedNode.map(function (n) { return n.ver }).join(', ') log.warn('npm', 'npm does not support Node.js ' + process.version) log.warn('npm', 'You should probably upgrade to a newer version of node as we') log.warn('npm', "can't make any promises that npm will work with this version.") log.warn('npm', 'Supported releases of Node.js are the latest release of ' + supportedMajors + '.') log.warn('npm', 'You can find the latest version at https://nodejs.org/') } }
Upload File
Create Folder