summaryrefslogtreecommitdiff
path: root/deps/npm/lib/utils/ping.js
blob: 00956d0c1630cef4b20f13ee5b9507556c3c1898 (plain)
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(() => ({}))
}