push all website files

This commit is contained in:
Jacob Levine
2019-01-06 13:14:45 -06:00
parent d7301e26c3
commit d2d5d4c04e
15662 changed files with 2166516 additions and 0 deletions

27
website/node_modules/npm/lib/utils/usage.js generated vendored Normal file
View File

@@ -0,0 +1,27 @@
'use strict'
var aliases = require('../config/cmd-list').aliases
module.exports = function usage (cmd, txt, opt) {
var post = Object.keys(aliases).reduce(function (p, c) {
var val = aliases[c]
if (val !== cmd) return p
return p.concat(c)
}, [])
if (opt || post.length > 0) txt += '\n\n'
if (post.length === 1) {
txt += 'alias: '
txt += post.join(', ')
} else if (post.length > 1) {
txt += 'aliases: '
txt += post.join(', ')
}
if (opt) {
if (post.length > 0) txt += '\n'
txt += 'common options: ' + opt
}
return txt
}