::JSON;
$autobox::JSON::VERSION = '0.0006';
use 5.008;
use strict;
use warnings;
use parent 'autobox';
sub import {
my ($class) = @_;
$class->SUPER::import(
HASH => 'autobox::JSON::
JSON::Ref',
STRING => 'autobox::JSON::String',
);
}
=head1 NAME
autobox::JSON - bringing JSON functions to autobox
=head1 VERSION
version 0.0006
=head1 SYNOPSIS
use autobox::JSON
34}->encode_json;
# {"name":"Jim","age":46}
my $person = '{"name":"Jim","age":46}'->decode_json
# {name => 'Jim', age => 34}
my $serialized_person = $person->encode_json;
# {"na