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