logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

JSON::Whitespace - Alter the insignificant whitespace of JSON

Author

       Ben Bullock, <bkb@cpan.org>

Description

       This module offers functions to manipulate the "insignificant whitespace" part of a JSON string (the
       whitespace which is not inside strings). According to the JSON specification "insignificant whitespace"
       consists of space (%x20), horizontal tab (%x09), line feed or new line (%x0A) and carriage return (%x0D).

Functions

json_indent
           my $indented = json_indent ($json);

       Add indentation to $json.

   json_minify
           my $minified = json_minify ($json);

       Remove all whitespace, including trailing newlines, from $json.

Name

       JSON::Whitespace - Alter the insignificant whitespace of JSON

See Also

       Documentation about JSON is in JSON::Parse. JSON::Whitespace is based on JSON::Tokenize, which breaks
       JSON into tokens without putting it into Perl structures.

Synopsis

           use JSON::Whitespace ':all';

           my $in = <<EOF;
           {
                       "animals":{
                               "kingkong":"🦍"
                       },
                       "baka":[
                               "ドジ"
                       ],
                       "fruit":{
                               "grape":"🍇"
                       },
                       "moons":{
                               "🌑":0
                       }
               }
           EOF
           my $minify = json_minify ($in);
           print $minify;

       This outputs

           {"animals":{"kingkong":"🦍"},"baka":["ドジ"],"fruit":{"grape":"🍇"},"moons":{"🌑":0}}

Version

       This documents version 0.62 of JSON::Whitespace corresponding to git commit
       d04630086f6c92fea720cba4568faa0cbbdde5a6 <https://github.com/benkasminbullock/JSON-
       Parse/commit/d04630086f6c92fea720cba4568faa0cbbdde5a6> released on Sat Jul 16 08:23:13 2022 +0900.

See Also