UNPKG

prettier-plugin-ember-template-tag

Version:
14 lines (13 loc) 253 B
/** * Throws an error if the condition is false. * * If no condition is provided, will always throw. */ export function assert( message: string, condition?: unknown, ): asserts condition { if (!condition) { throw new Error(message); } }