timo / json_fast

a naive imperative json parser in perl6, to evaluate performance against JSON::Tiny
Artistic License 2.0
27 stars 20 forks source link

to-json/pretty: empty line between brackets for {} #55

Closed dolmen closed 1 year ago

dolmen commented 5 years ago
perl6 -e 'use JSON::Fast; say to-json {}, :pretty;'
{

}

Expected result:

{
}

or

{}
dolmen commented 5 years ago

56b9bbf3503929320728483e130ee1fc9acfebef

timo commented 1 year ago

the result is now

{
}

thanks