We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d88074d commit 5ab89d5Copy full SHA for 5ab89d5
src/statement/hydrateResponse.ts
@@ -63,8 +63,7 @@ export const hydrateRow = (
63
const isArray = Array.isArray(row);
64
const hydratedRow = isArray ? [] : {};
65
66
- for (const index in meta) {
67
- const column = meta[index];
+ for (const [index, column] of meta.entries()) {
68
if (isArray) {
69
const key = +index;
70
(hydratedRow as unknown[])[key] = getHydratedValue(
0 commit comments