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

unstar.js « lib « npm « deps - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5dea5bcab0e9cb6423b4af3643c9838d56dc13c1 (plain)
1
2
3
4
5
6
7
8
9
const { usage, completion } = require('./star.js')
const npm = require('./npm.js')

const unstar = (args, cb) => {
  npm.config.set('star.unstar', true)
  return npm.commands.star(args, cb)
}

module.exports = Object.assign(unstar, { usage, completion })