MINI MINI MANI MO

Path : /opt/nvm/versions/node/v16.13.2/lib/node_modules/npm/lib/
File Upload :
Current File : //opt/nvm/versions/node/v16.13.2/lib/node_modules/npm/lib/bin.js

const envPath = require('./utils/path.js')
const BaseCommand = require('./base-command.js')

class Bin extends BaseCommand {
  static get description () {
    return 'Display npm bin folder'
  }

  static get name () {
    return 'bin'
  }

  static get params () {
    return ['global']
  }

  exec (args, cb) {
    this.bin(args).then(() => cb()).catch(cb)
  }

  async bin (args) {
    const b = this.npm.bin
    this.npm.output(b)
    if (this.npm.config.get('global') && !envPath.includes(b))
      console.error('(not in PATH env variable)')
  }
}
module.exports = Bin

OHA YOOOO