UNPKG

@nodecg/types

Version:

Dynamic broadcast graphics rendered in a browser

11 lines (9 loc) 268 B
export function isBrowser(): boolean { return typeof globalThis.window !== "undefined"; } export function isWorker(): boolean { return ( typeof (globalThis as any).WorkerGlobalScope !== "undefined" && self instanceof (globalThis as any).WorkerGlobalScope ); }