🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-14 13:32:05 | PHP 8.1.34
📂
/ (Root)
/
usr
/
lib
/
node_modules
/
npm
/
lib
/
commands
📍 /usr/lib/node_modules/npm/lib/commands
🔄 Refresh
✏️
Editing: birthday.js
Read Only
const BaseCommand = require('../base-command.js') const log = require('../utils/log-shim') class Birthday extends BaseCommand { static name = 'birthday' static description = 'Birthday, deprecated' static ignoreImplicitWorkspace = true static isShellout = true async exec () { this.npm.config.set('yes', true) log.warn('birthday', 'birthday is deprecated and will be removed in a future release') return this.npm.exec('exec', ['@npmcli/npm-birthday']) } } module.exports = Birthday
💾 Save Changes
❌ Cancel