Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 uid=33(www-data) gid=33(www-data) groups=33(www-data) Safe-mode: OFF (not secure) /usr/lib/node_modules/npm/lib/utils/ drwxr-xr-x | |
| Viewing file: Select action/file-type: const { cleanUrl } = require('npm-registry-fetch')
const isString = (v) => typeof v === 'string'
// split on \s|= similar to how nopt parses options
const splitAndReplace = (str) => {
// stateful regex, don't move out of this scope
const splitChars = /[\s=]/g
let match = null
let result = ''
let index = 0
while (match = splitChars.exec(str)) {
result += cleanUrl(str.slice(index, match.index)) + match[0]
index = splitChars.lastIndex
}
return result + cleanUrl(str.slice(index))
}
// replaces auth info in an array of arguments or in a strings
function replaceInfo (arg) {
if (isString(arg)) {
return splitAndReplace(arg)
} else if (Array.isArray(arg)) {
return arg.map((a) => isString(a) ? splitAndReplace(a) : a)
}
return arg
}
module.exports = replaceInfo
|
:: Command execute :: | |
--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0042 ]-- |