UNPKG

react-email

Version:

A live preview of your emails right in your browser.

9 lines (8 loc) 259 B
export const unreachable = ( condition: string | Record<string, unknown>, message = `Entered unreachable code. Received '${ typeof condition === 'string' ? condition : JSON.stringify(condition) }'.`, ): never => { throw new TypeError(message); };