Path : /opt/nvm/versions/node/v17.4.0/lib/node_modules/npm/lib/commands/ |
Current File : //opt/nvm/versions/node/v17.4.0/lib/node_modules/npm/lib/commands/birthday.js |
const BaseCommand = require('../base-command.js') class Birthday extends BaseCommand { static name = 'birthday' async exec () { this.npm.config.set('yes', true) return this.npm.exec('exec', ['@npmcli/npm-birthday']) } } module.exports = Birthday