in src/util.ts [14:17]
export function numberOrZero(s: string | null | undefined): number { const num = Number(s); return num > 0 ? num : 0 }