Your IP : 18.218.140.12


Current Path : /lib/ispnodejs/lib/node_modules/npm/lib/utils/
Upload File :
Current File : //lib/ispnodejs/lib/node_modules/npm/lib/utils/ping.js

// ping the npm registry
// used by the ping and doctor commands
const fetch = require('npm-registry-fetch')
module.exports = async (flatOptions) => {
  const res = await fetch('/-/ping', { ...flatOptions, cache: false })
  return res.json().catch(() => ({}))
}