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.

9 lines (8 loc) 158 B
export function safeAction(action: () => void) { try { action(); } catch (e) { // eslint-disable-next-line no-console console.error(e); } }