1import { throwIf } from '../throwErrorF/throwIfF.mts'23export function assertTruthy<T>(value: T, debugCtx?: Record<string, unknown>): asserts value is NonNullable<T> {4 throwIf(() => !value, debugCtx)5}6