|
Revision 3232, 425 bytes
(checked in by bchoate, 12 months ago)
|
|
Updating JSON package to 2.12.
|
-
Property svn:keywords set to
Id Revision
|
| Line | |
|---|
| 1 | =head1 NAME |
|---|
| 2 | |
|---|
| 3 | JSON::PP::Boolean - dummy module providing JSON::PP::Boolean |
|---|
| 4 | |
|---|
| 5 | =head1 SYNOPSIS |
|---|
| 6 | |
|---|
| 7 | # do not "use" yourself |
|---|
| 8 | |
|---|
| 9 | =head1 DESCRIPTION |
|---|
| 10 | |
|---|
| 11 | This module exists only to provide overload resolution for Storable and similar modules. See |
|---|
| 12 | L<JSON::PP> for more info about this class. |
|---|
| 13 | |
|---|
| 14 | =cut |
|---|
| 15 | |
|---|
| 16 | use JSON::PP (); |
|---|
| 17 | use strict; |
|---|
| 18 | |
|---|
| 19 | 1; |
|---|
| 20 | |
|---|
| 21 | =head1 AUTHOR |
|---|
| 22 | |
|---|
| 23 | This idea is from L<JSON::XS::Boolean> written by Marc Lehmann <schmorp[at]schmorp.de> |
|---|
| 24 | |
|---|
| 25 | =cut |
|---|
| 26 | |
|---|