mirror of
https://github.com/nodejs/node.git
synced 2025-05-15 19:48:12 +00:00

PR-URL: https://github.com/nodejs/node/pull/43061 Reviewed-By: Ruy Adorno <ruyadorno@github.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
8 lines
182 B
JavaScript
8 lines
182 B
JavaScript
const Star = require('./star.js')
|
|
|
|
class Unstar extends Star {
|
|
static description = 'Remove an item from your favorite packages'
|
|
static name = 'unstar'
|
|
}
|
|
module.exports = Unstar
|