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.

15 lines 385 B
import { initVevet } from './global/initVevet'; import { isBrowser } from './internal/env'; export { initVevet }; /** * Vevet Core * * @group Core */ export const vevet = (isBrowser ? initVevet() : undefined); export const app = vevet; export * from './core/exported'; export * from './utils'; export * from './base'; export * from './components'; //# sourceMappingURL=index.js.map