sql-typechecker 0.0.122 → 0.0.124
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/typeparsers.js +0 -2
- package/out/typeparsers.js.map +2 -2
- package/package.json +4 -2
package/out/typeparsers.js
CHANGED
|
@@ -17736,9 +17736,7 @@ function parseTsmultirange(multirangeStr) {
|
|
|
17736
17736
|
let match;
|
|
17737
17737
|
while ((match = rangeRegex.exec(content)) !== null) {
|
|
17738
17738
|
const [_, startBracket, startStr, endStr, endBracket] = match;
|
|
17739
|
-
console.log(startStr);
|
|
17740
17739
|
const start = startStr ? import_core.LocalDateTime.parse(startStr.replace(/"/g, "").replace(" ", "T")) : null;
|
|
17741
|
-
console.log(endStr);
|
|
17742
17740
|
const end = endStr ? import_core.LocalDateTime.parse(endStr.replace(/"/g, "").replace(" ", "T")) : null;
|
|
17743
17741
|
const bounds = `${startBracket}${endBracket}`;
|
|
17744
17742
|
ranges.push({
|