export function isValidPosition(pos: number | null | undefined): pos is number { return typeof pos === 'number' && pos >= 0 }