Group
Extension

Matches 1

PApp ( M/ML/MLEHMANN/PApp-2.3.tar.gz, MLEHMANN, 2023; MetaCPAN )
PApp/PApp/Util.pm ( view source; MetaCPAN )
her categories easily.

=over 4

=cut

package PApp::Util;

use Carp;
use URI;
use Socket ();
use JSON::XS;

use base 'Exporter';

BEGIN {
   $VERSION = 2.3;
   @EXPORT = qw(dumpval uniq);
   @EXPORT_

}

=item $ref = decode_json $json

Converts a JSON string into the corresponding perl data structure.

=cut

*decode_json = \&JSON::XS::decode_json;

=item $json = encode_json $ref

Converts a perl d
ata structure into its JSON representation.

=cut

*encode_json = \&JSON::XS::encode_json;

=item digest(args...)

Calculate a SHA1 digest and return it base64-encoded. The result will
always be 27 ch

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