summaryrefslogtreecommitdiff
path: root/deps/npm/lib/unstar.js
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 })