@rip-lang/db 0.8.2 → 0.8.3

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.
@@ -459,8 +459,13 @@ export tokenizeSQL = (sql) ->
459
459
  i++
460
460
  while i < sql.length
461
461
  if sql[i] is "'"
462
- if sql[i + 1] is "'" then i += 2 else (i++; break)
463
- else i++
462
+ if sql[i + 1] is "'"
463
+ i += 2
464
+ else
465
+ i++
466
+ break
467
+ else
468
+ i++
464
469
  tokens.push { offset: start, type: TokenType.STRING_CONSTANT }
465
470
  continue
466
471
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rip-lang/db",
3
- "version": "0.8.2",
3
+ "version": "0.8.3",
4
4
  "description": "DuckDB Server — Simple HTTP API for DuckDB queries",
5
5
  "type": "module",
6
6
  "main": "db.rip",