File "root.js"

Full Path: /home/attunedd/public_html/byp/izo/con7ext_sym404/rintoar.txt/usr/lib/node_modules/npm/lib/commands/root.js
File size: 258 bytes
MIME-type: text/plain
Charset: utf-8

const BaseCommand = require('../base-command.js')
class Root extends BaseCommand {
  static description = 'Display npm root'
  static name = 'root'
  static params = ['global']

  async exec () {
    this.npm.output(this.npm.dir)
  }
}
module.exports = Root