File size: 271 Bytes
c6b68af
 
 
 
 
 
1
2
3
4
5
6
7
// ping the npm registry used by the ping and doctor commands
const npmFetch = require('npm-registry-fetch')
module.exports = async (flatOptions) => {
  const res = await npmFetch('/-/ping', { ...flatOptions, cache: false })
  return res.json().catch(() => ({}))
}