📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: Apache
2026-06-21 14:35:46
📂
/ (Root)
/
usr
/
lib
/
node_modules
/
npm
/
lib
/
config
📍 /usr/lib/node_modules/npm/lib/config
🔄 Refresh
✏️
Editing: nerf-dart.js
Read Only
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) delete parsed.protocol delete parsed.auth delete parsed.query delete parsed.search delete parsed.hash return url.resolve(url.format(parsed), '.') }
💾 Save Changes
❌ Cancel