mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2025-09-06 23:17:22 +00:00
push all website files
This commit is contained in:
13
website/node_modules/npm/lib/set.js
generated
vendored
Normal file
13
website/node_modules/npm/lib/set.js
generated
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
|
||||
module.exports = set
|
||||
|
||||
set.usage = 'npm set <key> <value> (See `npm config`)'
|
||||
|
||||
var npm = require('./npm.js')
|
||||
|
||||
set.completion = npm.commands.config.completion
|
||||
|
||||
function set (args, cb) {
|
||||
if (!args.length) return cb(set.usage)
|
||||
npm.commands.config(['set'].concat(args), cb)
|
||||
}
|
Reference in New Issue
Block a user