UNPKG

reselect

Version:
10 lines (9 loc) 176 B
export function assert( condition: any, msg = 'Assertion failed!' ): asserts condition { if (!condition) { console.error(msg) throw new Error(msg) } }