mirror of
https://github.com/logos-storage/nim-serde.git
synced 2026-01-09 00:53:08 +00:00
8 lines
213 B
Nim
8 lines
213 B
Nim
|
|
import std/json
|
||
|
|
|
||
|
|
func isEmptyString*(json: JsonNode): bool =
|
||
|
|
return json.kind == JString and json.getStr == ""
|
||
|
|
|
||
|
|
func isNullString*(json: JsonNode): bool =
|
||
|
|
return json.kind == JString and json.getStr == "null"
|