(value: unknown)
| 38 | } |
| 39 | |
| 40 | function cell(value: unknown): string { |
| 41 | return truncate(String(value ?? ''), MAX_CELL_LENGTH) |
| 42 | } |
| 43 | |
| 44 | /** |
| 45 | * Streams the first {@link CSV_PREVIEW_MAX_ROWS} rows of a CSV/TSV from storage without |
nothing calls this directly
no test coverage detected