UNPKG

@instantdb/core

Version:

Instant's core local abstraction

9 lines 281 B
export function assert(condition, msg) { if (!condition) { throw new Error('[assertion error] ' + msg); } } export function assertUnreachable(_x) { throw new Error('[assertion error] TS should prevent us from reaching here'); } //# sourceMappingURL=error.js.map