Welcome to mirror list, hosted at ThFree Co, Russian Federation.

replace-info.js « utils « lib - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e9d19ef5fb2ba4412c790e17eb7d2911bfe09d46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
const URL = require('url').URL

// replaces auth info in an array of arguments or in a strings
function replaceInfo (arg) {
  const isArray = Array.isArray(arg)
  const isString = str => typeof str === 'string'

  if (!isArray && !isString(arg)) {
    return arg
  }

  const testUrlAndReplace = str => {
    try {
      const url = new URL(str)
      return url.password === '' ? str : str.replace(url.password, '***')
    } catch (e) {
      return str
    }
  }

  const args = isString(arg) ? arg.split(' ') : arg
  const info = args.map(a => {
    if (isString(a) && a.indexOf(' ') > -1) {
      return a.split(' ').map(testUrlAndReplace).join(' ')
    }

    return testUrlAndReplace(a)
  })

  return isString(arg) ? info.join(' ') : info
}

module.exports = replaceInfo