UNPKG

@slashid/react-primitives

Version:

Primitive components for the /id React SDK

9 lines (8 loc) 214 B
/** * Helper function to check if current runtime is a browser, mainly for SSR. * * @returns boolean */ export function isBrowser(): boolean { return typeof window !== "undefined" && globalThis === window; }