( zeroBasedRecordStartLine: number, zeroBasedLine: number, zeroBasedColumn: number, )
| 213 | }: bare " in non-quoted-field`; |
| 214 | } |
| 215 | export function createQuoteErrorMessage( |
| 216 | zeroBasedRecordStartLine: number, |
| 217 | zeroBasedLine: number, |
| 218 | zeroBasedColumn: number, |
| 219 | ) { |
| 220 | return `Syntax error on line ${ |
| 221 | zeroBasedRecordStartLine + 1 |
| 222 | }; parse error on line ${zeroBasedLine + 1}, column ${ |
| 223 | zeroBasedColumn + 1 |
| 224 | }: extraneous or missing " in quoted-field`; |
| 225 | } |
| 226 | |
| 227 | export function convertRowToObject( |
| 228 | row: readonly string[], |
no outgoing calls
no test coverage detected