/usr/local/lib/node_modules/npm/lib/commands
Edit: /usr/local/lib/node_modules/npm/lib/commands/undeprecate.js (302B)
const Deprecate = require('./deprecate.js')
class Undeprecate extends Deprecate {
static description = 'Undeprecate a version of a package'
static name = 'undeprecate'
static usage = ['
']
async exec ([pkg]) {
return super.exec([pkg, ''])
}
}
module.exports = Undeprecate