chore: delete unused util/network module (#27329)

This commit is contained in:
Kit Langton
2026-05-13 09:56:15 -04:00
committed by GitHub
parent f13fc5a8a8
commit 762020f63a

View File

@@ -1,9 +0,0 @@
export function online() {
const nav = globalThis.navigator
if (!nav || typeof nav.onLine !== "boolean") return true
return nav.onLine
}
export function proxied() {
return !!(process.env.HTTP_PROXY || process.env.HTTPS_PROXY || process.env.http_proxy || process.env.https_proxy)
}