<<

NAME

C4::Output::JSONStream - progressively build JSON data

SYNOPSIS

my $json = new C4::Output::JSONStream;

$json->param( issues => [ 'yes!', 'please', 'no', { emphasis = 'NO' } ] ); $json->param( stuff => 'realia' );

print $json->output;

DESCRIPTION

This module allows you to build JSON incrementally.

<<