(columns, f)
| 8127 | } |
| 8128 | |
| 8129 | function customConverter(columns, f) { |
| 8130 | var object = objectConverter(columns); |
| 8131 | return function(row, i) { |
| 8132 | return f(object(row), i, columns); |
| 8133 | }; |
| 8134 | } |
| 8135 | |
| 8136 | // Compute unique columns in order of discovery. |
| 8137 | function inferColumns(rows) { |
no test coverage detected