|
Server : Apache System : Linux cvar2.toservers.com 3.10.0-962.3.2.lve1.5.73.el7.x86_64 #1 SMP Wed Aug 24 21:31:23 UTC 2022 x86_64 User : njnconst ( 1116) PHP Version : 8.4.18 Disable Function : NONE Directory : /opt/alt-old/alt-nodejs6/root/lib/node_modules/npm/lib/utils/ |
Upload File : |
'use strict'
var path = require('path')
var validate = require('aproba')
module.exports = moduleName
module.exports.test = {}
module.exports.test.pathToPackageName = pathToPackageName
function pathToPackageName (dir) {
if (dir == null) return ''
if (dir === '') return ''
var name = path.relative(path.resolve(dir, '..'), dir)
var scoped = path.relative(path.resolve(dir, '../..'), dir)
if (scoped[0] === '@') return scoped.replace(/\\/g, '/')
return name
}
module.exports.test.isNotEmpty = isNotEmpty
function isNotEmpty (str) {
return str != null && str !== ''
}
var unknown = 0
function moduleName (tree) {
validate('O', arguments)
var pkg = tree.package || tree
if (isNotEmpty(pkg.name)) return pkg.name
var pkgName = pathToPackageName(tree.path)
if (pkgName !== '') return pkgName
if (tree._invalidName != null) return tree._invalidName
tree._invalidName = '!invalid#' + (++unknown)
return tree._invalidName
}