Files
Camilou.fr/VUEJS/backend/node_modules/elysia/dist/universal/utils.mjs
T
Camilla Schoeser 6a71f91e2f ajout du site
2026-05-29 21:38:59 +02:00

19 lines
351 B
JavaScript

const isBun = typeof Bun < "u", isDeno = typeof Deno < "u";
function isCloudflareWorker() {
try {
if (
// @ts-ignore
typeof caches < "u" && // @ts-ignore
typeof caches.default < "u" || typeof WebSocketPair < "u"
) return !0;
} catch {
return !1;
}
return !1;
}
export {
isBun,
isCloudflareWorker,
isDeno
};