icJSON;
use Exporter;
@ISA = ('Exporter');
@EXPORT = qw();
our $VERSION = 0.05;
use strict;
use warnings;
use XML::LibXML;
use JSON::XS;
=head1 NAME
XML::GenericJSON - for turning XML into JSON,
SYNOPSIS
my $json_string = XML::GenericJSON::string2string($xml_string);
my $json_string = XML::GenericJSON::file2string($xml_filename);
XML::GenericJSON::string2file($xml_string,$json_filename);
ename,$json_filename);
=head1 DESCRIPTION
XML::GenericJSON provides functions for turning XML into JSON. It uses LibXML to parse
the XML and JSON::XS to turn a perlish data structure into JSON. The