Subject: | a patch for JSON new version |
I send a patch for the new JSON version.
As I understand your anger, if you have not deserted it yet
and this patch helps you more or less, I shall be relieved.
Subject: | diff.txt |
7a8
> BEGIN { $ENV{PERL_JSON_BACKEND} = 'JSON::PP'; }
23c24
< my $JSON = JSON->new(
---
> my $JSON = JSON->VERSION < 2 ? JSON->new(
26c27
< );
---
> ) : JSON->new->pretty->indent_length(2);