AlkantarClanX12

Your IP : 18.224.73.157


Current Path : /proc/self/root/opt/alt/alt-nodejs18/root/usr/lib/node_modules/npm/lib/commands/
Upload File :
Current File : //proc/self/root/opt/alt/alt-nodejs18/root/usr/lib/node_modules/npm/lib/commands/ll.js

const LS = require('./ls.js')

class LL extends LS {
  static name = 'll'
  static usage = ['[[<@scope>/]<pkg> ...]']

  async exec (args) {
    this.npm.config.set('long', true)
    return super.exec(args)
  }
}

module.exports = LL