XylotrechusZ
XylotrechusZ Shell
: /proc/thread-self/root/opt/alt/alt-nodejs10/root/usr/lib/node_modules/npm/lib/utils/ [ drwxr-xr-x ]
'use strict'
module.exports = isRegistry
function isRegistry (req) {
if (req == null) return false
// modern metadata
if ('registry' in req) return req.registry
// legacy metadata
if (req.type === 'range' || req.type === 'version' || req.type === 'tag') return true
return false
}