json icon indicating copy to clipboard operation
json copied to clipboard

A tiny JSON parser and emitter for Perl 6 on Rakudo

Results 8 json issues
Sort by recently updated
recently updated
newest added

Might be better to suggest > zef test .

GIT TAGS are required in the future to build and install a "RSTAR {Rakudo Star]" installation. Please keep your GIT TAGs alighned to your "MATA6.json" version. THANKS!

I have worked out why I sometimes end up with ancient versions of json::tiny: there is no github release (https://github.com/moritz/json/releases) for the 1.0 that is on CPAN. I guess it...

Perhaphs add a sub that takes an instance that can actually return a structure that only includes items that we want in the output: ``` multi sub to-json ( $_...

I wonder if this library can do detailed error reporting on invalid JSON inputs. Right now it does not indicate the offending location in the potentially large JSON input strings...

Currrently, `to-json { a => [1, 2, 'b'] };` produces this JSON string `{ "a" : [ 1, 2, "b" ] }`. All of the spaces between the elements are...