Merge remote-tracking branch 'upstream/master'

This commit is contained in:
2025-11-23 15:05:38 -03:00
2 changed files with 2 additions and 3 deletions

View File

@@ -50,8 +50,7 @@ template with*(ident, value, body): untyped =
template with*(ident; value: JsonNode; body): untyped =
if true:
let ident {.inject.} = value
# value.notNull causes a compilation error for versions < 1.6.14
if notNull(value): body
if value.notNull: body
template getCursor*(js: JsonNode): string =
js{"content", "operation", "cursor", "value"}.getStr