11cb0ef41Sopenharmony_ci// ping the npm registry 21cb0ef41Sopenharmony_ci// used by the ping and doctor commands 31cb0ef41Sopenharmony_ciconst fetch = require('npm-registry-fetch') 41cb0ef41Sopenharmony_cimodule.exports = async (flatOptions) => { 51cb0ef41Sopenharmony_ci const res = await fetch('/-/ping?write=true', flatOptions) 61cb0ef41Sopenharmony_ci return res.json().catch(() => ({})) 71cb0ef41Sopenharmony_ci} 8