AlkantarClanX12
Current Path : /proc/thread-self/root/opt/alt/alt-nodejs11/root/lib/node_modules/npm/lib/utils/ |
Current File : //proc/thread-self/root/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) } }) }