JString fix to compress initial assignment JSON.

This commit is contained in:
barant 2024-12-17 09:58:56 -08:00
parent 95254310f0
commit d1e5e41ab2
2 changed files with 6 additions and 0 deletions

View File

@ -156,6 +156,12 @@ namespace coreutils {
while(!eod()) {
if(*cursor == ' ')
remove(1);
else if(*cursor == '\r')
remove(1);
else if(*cursor == '\t')
remove(1);
else if(*cursor == '\n')
remove(1);
else if(startsWith("\""))
getContainer();
else

Binary file not shown.