(row: any)
| 132 | } |
| 133 | |
| 134 | function normalizeRow(row: any) { |
| 135 | const newRow: { [col: string]: any } = {}; |
| 136 | Object.keys(row).forEach(colName => { |
| 137 | newRow[normalizeColumnName(colName)] = row[colName]; |
| 138 | }); |
| 139 | return newRow; |
| 140 | } |
no test coverage detected