UNPKG

@kahi-ui/framework

Version:

Straight-forward Svelte UI for the Web

5 lines (4 loc) 230 B
// TODO: Change to proper runtime detection. Some runtimes like Deno have // `window` polyfilled, so this would throw a false positive export const IS_BROWSER = typeof window !== "undefined"; export const IS_SERVER = !IS_BROWSER;