NAME
MozRepl::Plugin::JSON - To JSON string plugin.
VERSION
version 0.04
SYNOPSYS
use MozRepl;
use MozRepl::Util;
my $repl = MozRepl->new;
$repl->setup({ plugins => { plugins => [qw/JSON/] } });
print $repl->json({ source => MozRepl::Util->javascript_value({foo => 1, bar => 2}) });
DESCRIPTION
Add json() method to MozRepl.
METHODS
setup($ctx, $args)
Load script at http://www.thomasfrank.se/downloadableJS/jsonStringify.js
execute($ctx, $args)
- $ctx
-
Context object. See MozRepl.
- $args
-
Hash reference.
- source
-
Source string. If you want to JavaScript literal, then use MozRepl::Util->javascript_value() method. See "javascript_value($value)" in MozRepl::Util.
SEE ALSO
- MozRepl::Plugin::Base
- MozRepl::Util
- Data::JavaScript::Anon
- JavaScript::Minifier
- http://www.thomasfrank.se/downloadableJS/jsonStringify.js
AUTHOR
Toru Yamaguchi, <zigorou@cpan.org>
BUGS
Please report any bugs or feature requests to bug-mozrepl-plugin-json@rt.cpan.org
, or through the web interface at http://rt.cpan.org. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
COPYRIGHT & LICENSE
Copyright 2007 Toru Yamaguchi, All Rights Reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.