(
source: RequestInfo, csvConfig: CSVConfig = {})
| 104 | * } |
| 105 | */ |
| 106 | export function csv( |
| 107 | source: RequestInfo, csvConfig: CSVConfig = {}): CSVDataset { |
| 108 | return new CSVDataset(new URLDataSource(source), csvConfig); |
| 109 | } |
| 110 | |
| 111 | /** |
| 112 | * Create a `Dataset` that produces each element by calling a provided function. |
nothing calls this directly
no outgoing calls
no test coverage detected