mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
410 B
17 lines
410 B
8 years ago
|
'use strict'
|
||
|
|
||
|
const url = require('url')
|
||
|
|
||
|
// Called a nerf dart in the main codebase. Used as a "safe"
|
||
|
// key when fetching registry info from config.
|
||
|
module.exports = registryKey
|
||
|
function registryKey (registry) {
|
||
|
const parsed = url.parse(registry)
|
||
|
const formatted = url.format({
|
||
|
host: parsed.host,
|
||
|
pathname: parsed.pathname,
|
||
|
slashes: parsed.slashes
|
||
|
})
|
||
|
return url.resolve(formatted, '.')
|
||
|
}
|