(header)
| 1 | import Papa from "papaparse"; |
| 2 | |
| 3 | function sanitizeHeader(header) { |
| 4 | if (typeof header !== "string") return ""; |
| 5 | return header.trim(); |
| 6 | } |
| 7 | |
| 8 | export function coerceNumber(value) { |
| 9 | if (value === null || value === undefined) return null; |
nothing calls this directly
no outgoing calls
no test coverage detected