UNPKG

@gigscom/embeds-js

Version:

prebuilt embeddable UI components on top of the Gigs API for the Web

10 lines (9 loc) 171 B
export function assert( condition: unknown, message: string, cause?: Error, ): asserts condition { if (!condition) { throw new Error(message, { cause }) } }