• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1const Star = require('./star.js')
2
3class Unstar extends Star {
4  static description = 'Remove an item from your favorite packages'
5  static name = 'unstar'
6}
7module.exports = Unstar
8