📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-06-30 09:14:10
📂
/ (Root)
/
opt
/
alt
/
alt-nodejs16
/
root
/
usr
/
lib
/
node_modules
/
npm
/
node_modules.bundled
/
npm-registry-fetch
/
lib
📍 /opt/alt/alt-nodejs16/root/usr/lib/node_modules/npm/node_modules.bundled/npm-registry-fetch/lib
🔄 Refresh
✏️
Editing: clean-url.js
Read Only
const { URL } = require('url') const replace = '***' const tokenRegex = /\bnpm_[a-zA-Z0-9]{36}\b/g const guidRegex = /\b[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}\b/g const cleanUrl = (str) => { if (typeof str !== 'string' || !str) { return str } try { const url = new URL(str) if (url.password) { str = str.replace(url.password, replace) } } catch { // ignore errors } return str .replace(tokenRegex, `npm_${replace}`) .replace(guidRegex, `npm_${replace}`) } module.exports = cleanUrl
💾 Save Changes
❌ Cancel