MCPcopy Create free account
hub / github.com/dataform-co/dataform / normalizeRow

Function normalizeRow

cli/api/commands/test.ts:134–140  ·  view source on GitHub ↗
(row: any)

Source from the content-addressed store, hash-verified

132}
133
134function 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}

Callers 1

runTestFunction · 0.85

Calls 1

normalizeColumnNameFunction · 0.85

Tested by

no test coverage detected