@axiomhq/logging
Version:
The official logging package for Axiom
12 lines (11 loc) • 394 B
JavaScript
const Version = "0.1.6";
const isWebWorker = typeof self !== "undefined" && typeof globalThis.WorkerGlobalScope !== "undefined" && self instanceof WorkerGlobalScope;
const isBrowser = typeof window !== "undefined" || isWebWorker;
const isEdgeRuntime = globalThis.EdgeRuntime ? true : false;
export {
Version,
isBrowser,
isEdgeRuntime,
isWebWorker
};
//# sourceMappingURL=runtime.js.map