(input: string, sep?: Comma, quo?: Quote)
| 296 | } |
| 297 | |
| 298 | const fetch = (input: string, sep?: Comma, quo?: Quote): Value[] => { |
| 299 | // TODO |
| 300 | let output: Value[] | undefined; |
| 301 | read(input, sep as Comma, quo as Quote, (fields) => { |
| 302 | output = fields; |
| 303 | }); |
| 304 | return output as Value[]; |
| 305 | }; |
| 306 | |
| 307 | const createStream = (options?: { |
| 308 | separator?: Comma; |