mirror of https://github.com/nodejs/node.git
22 lines
410 B
JavaScript
22 lines
410 B
JavaScript
|
var url = require("url")
|
||
|
|
||
|
module.exports = toNerfDart
|
||
|
|
||
|
/**
|
||
|
* Maps a URL to an identifier.
|
||
|
*
|
||
|
* Name courtesy schiffertronix media LLC, a New Jersey corporation
|
||
|
*
|
||
|
* @param {String} uri The URL to be nerfed.
|
||
|
*
|
||
|
* @returns {String} A nerfed URL.
|
||
|
*/
|
||
|
function toNerfDart(uri) {
|
||
|
var parsed = url.parse(uri)
|
||
|
parsed.pathname = "/"
|
||
|
delete parsed.protocol
|
||
|
delete parsed.auth
|
||
|
|
||
|
return url.format(parsed)
|
||
|
}
|