UNPKG

@yoyo-org/progressive-json

Version:

Stream and render JSON data as it arrives - perfect for AI responses, large datasets, and real-time updates

6 lines (5 loc) 147 B
export function assert(condition: unknown, errorMessage: string): asserts condition { if (!condition) { throw new Error(errorMessage); } }