sql-typechecker 0.0.9 → 0.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/out/cli.js +1 -1
- package/out/cli.js.map +2 -2
- package/out/typeparsers.js +1 -0
- package/out/typeparsers.js.map +1 -1
- package/package.json +3 -3
package/out/cli.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
1
2
|
var __create = Object.create;
|
|
2
3
|
var __defProp = Object.defineProperty;
|
|
3
4
|
var __getProtoOf = Object.getPrototypeOf;
|
|
@@ -237126,7 +237127,6 @@ export async function ${f.name.name}(pool: Pool, args: ${argsType})
|
|
|
237126
237127
|
rowMode: "array",
|
|
237127
237128
|
});
|
|
237128
237129
|
const rows = res.rows.map(row => ${genDeserialization(f.returns, "row")});
|
|
237129
|
-
debugger;
|
|
237130
237130
|
return rows${f.multipleRows ? "" : "[0]"};
|
|
237131
237131
|
}
|
|
237132
237132
|
`;
|