Files
Kmake/deps/npm/lib/commands/unstar.js

9 lines
183 B
JavaScript
Raw Normal View History

2026-05-26 23:36:42 -07:00
const Star = require('./star.js')
class Unstar extends Star {
static description = 'Remove an item from your favorite packages'
static name = 'unstar'
}
module.exports = Unstar