@busy-hour/blaze
Version:
<h1 align='center'>🔥 Blaze</h1> <div align='center'> An event driven framework for 🔥 Hono.js </div>
18 lines (17 loc) • 485 B
JavaScript
// src/utils/constant/config/runtime.ts
var isNode = globalThis.process?.release?.name === "node";
var isBun = !!globalThis.Bun || !!globalThis.process?.versions?.bun;
var isDeno = !!globalThis.Deno;
var isFastly = !!globalThis.fastly;
var isNetlify = !!globalThis.Netlify;
var isEdgeLight = !!globalThis.EdgeRuntime;
var isWorkerd = globalThis.navigator?.userAgent === "Cloudflare-Workers";
export {
isBun,
isDeno,
isEdgeLight,
isFastly,
isNetlify,
isNode,
isWorkerd
};