File Explorer

/var/lang/lib/node_modules/npm/lib/commands

This explorer reads the filesystem of the server it runs on, so /workspace/user isn't present here. Browsing and the terminal still work against this server's own disk from /.

1 dir
67 files
undeprecate.js302 B · 14 lines
const Deprecate = require('./deprecate.js') class Undeprecate extends Deprecate {  static description = 'Undeprecate a version of a package'  static name = 'undeprecate'  static usage = ['<package-spec>']   async exec ([pkg]) {    return super.exec([pkg, ''])  }} module.exports = Undeprecate