export default function assert( cond: unknown, error: T, ): asserts cond { if (!cond) { throw error; } }