Hacked By AnonymousFox

Current Path : /proc/thread-self/root/opt/alt/alt-nodejs14/root/usr/lib/node_modules/npm/lib/doctor/
Upload File :
Current File : //proc/thread-self/root/opt/alt/alt-nodejs14/root/usr/lib/node_modules/npm/lib/doctor/check-ping.js

var log = require('npmlog')
var ping = require('../ping.js')

function checkPing (cb) {
  var tracker = log.newItem('checkPing', 1)
  tracker.info('checkPing', 'Pinging registry')
  ping({}, true, (err, pong) => {
    if (err && err.code && err.code.match(/^E\d{3}$/)) {
      return cb(null, [err.code.substr(1), 'failed'])
    } else {
      cb(null, [200, 'ok'])
    }
  })
}

module.exports = checkPing

Hacked By AnonymousFox1.0, Coded By AnonymousFox