马宇豪
2024-07-16 aaae9c0a6ecda07e3a1494d9dff124df97e062ce
1
2
3
4
5
6
7
// 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?write=true', flatOptions)
  return res.json().catch(() => ({}))
}