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: 554bd60bc9d9435cc05a50836050f1a4f4ffc7c1 (plain)
1
2
3
4
5
6
7
8
9
const { usage } = 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 })