UNPKG

vevet

Version:

Vevet is a JavaScript library for creative development that simplifies crafting rich interactions like split text animations, carousels, marquees, preloading, and more.

8 lines (4 loc) 240 B
export const isBrowser = typeof window !== 'undefined'; export const doc = (isBrowser ? document : undefined)!; export const html = (isBrowser ? doc.documentElement : undefined)!; export const body = (isBrowser ? doc.body : undefined)!;