Hacked By AnonymousFox

Current Path : /opt/alt/alt-nodejs11/root/lib/node_modules/npm/lib/utils/
Upload File :
Current File : //opt/alt/alt-nodejs11/root/lib/node_modules/npm/lib/utils/open-url.js

'use strict'
const npm = require('../npm.js')
const output = require('./output.js')
const opener = require('opener')

// attempt to open URL in web-browser, print address otherwise:
module.exports = function open (url, errMsg, cb, browser = npm.config.get('browser')) {
  opener(url, { command: npm.config.get('browser') }, (er) => {
    if (er && er.code === 'ENOENT') {
      output(`${errMsg}:\n\n${url}`)
      return cb()
    } else {
      return cb(er)
    }
  })
}

Hacked By AnonymousFox1.0, Coded By AnonymousFox