UNPKG

@multiplayer-app/session-recorder-browser

Version:
9 lines 547 B
export const SESSION_RECORDER_LOADED = '__SESSION_RECORDER_LOADED'; export const SESSION_RECORDER_INJECTED = '__SESSION_RECORDER_INJECTED'; export const SESSION_RECORDER_LISTENERS_SETUP = '__SESSION_RECORDER_LISTENERS_SETUP'; export const isBrowser = typeof window !== 'undefined' && typeof document !== 'undefined'; export const globalObj = typeof globalThis !== 'undefined' ? globalThis : (isBrowser ? window : {}); export const isBrowserExtension = isBrowser && SESSION_RECORDER_INJECTED in globalObj; //# sourceMappingURL=global.js.map