Closed akiym closed 4 years ago
\b and \f were left escaped, now they are correctly unescaped by from-json().
\b
\f
from-json()
Before:
> from-json('"\\b\\f\\n\\r\\t"').raku "\\b\\f\n\r\t"
After:
> from-json('"\\b\\f\\n\\r\\t"').raku "\b\x[C]\n\r\t"
@timo could you merge this?
merged and released to cpan, thank you very much, @akiym
\b
and\f
were left escaped, now they are correctly unescaped byfrom-json()
.Before:
After: