Group
Extension

Matches 2

JSON_minify ( R/RC/RCOSCALI/JSON_minify-1.1.1.tar.gz, RCOSCALI, 2021; MetaCPAN )
JSON_minify/lib/JSON_minify.pm ( view source; MetaCPAN )
#!/usr/bin/perl
##
## JSON_minify.pm
## Copyright ©2018 Rémi Cohen-Scali
##
##
## Permission is hereby granted, free of charge, to any person obtaining a copy
## of this software and associated docu
VERSION = '1.1.1';

package JSON_minify;

use strict;
use warnings;

sub new {
    my $class = shift;
    return bless {}, $class;
}

##
## minify_string
##
## Minify a json content available in the 2
lf param: the object instance
    my $self = shift;
    # input_string param: a string containing json
    my $input_string = shift;
    # strip_space param: a boolean that specify if caller 
    # wa
JSON_minify ( R/RC/RCOSCALI/JSON_minify-1.1.1.tar.gz, RCOSCALI, 2021; MetaCPAN )
JSON_minify/bin/json_minify.pl ( view source; MetaCPAN )
#!/usr/bin/perl
##
## json_minify.pl
## Copyright ©2018 Rémi Cohen-Scali
##
##
## Permission is hereby granted, free of charge, to any person obtaining a copy
## of this software and associated docu
o process a json file/stream
##
## usage: json_minify.pl -i <afile>.json -o <anoutfile>.json
##        cat <afile.json> | json_minify.pl > <anoutfile>.json
##        cat <afile.json> | json_minify.pl 
-o <anoutfile>.json
##        json_minify.pl -i <afile>.json > <anoutfile>.json
##
## -s|--strip for stripping spaces
##


our $VERSION = '1.0';

use strict;
use warnings;
use Getopt::Long;
use Pod::U

Powered by Groonga
Maintained by Kenichi Ishigaki <ishigaki@cpan.org>. If you find anything, submit it on GitHub.