UNPKG

@finsweet/ts-utils

Version:

Typescript utils for custom Webflow projects.

9 lines (8 loc) 228 B
/** * Displays an alert and throw an exception. * @param message * @returns The generic argument to assure type safety when querying DOM Elements. */ export const throwError = (message) => { throw new Error(message); };