@oruga-ui/oruga-next
Version:
UI components for Vue.js and CSS framework agnostic
9 lines (6 loc) • 318 B
text/typescript
// Polyfills for SSR
export const isClient = typeof window !== "undefined";
export const isSSR = typeof window === "undefined";
export const HTMLElement = isSSR ? Object : window.HTMLElement;
export const HTMLInputElement = isSSR ? Object : window.HTMLInputElement;
export const File = isSSR ? Object : window.File;