in reply to Re^4: Making JSON::{PP,XS} not decode true/false to JSON::{PP,XS}::Boolean objects (source)
in thread Making JSON::{PP,XS} not decode true/false to JSON::{PP,XS}::Boolean objects
Hmmm, what to do .....
$JSON::Tiny::FALSE = \'0FALSE'; $JSON::Tiny::TRUE = \'1TRUE'; $JSON::Tiny::FALSE = !!0; $JSON::Tiny::TRUE = !!1; $JSON::Tiny::FALSE = Scalar::Util::dualvar( 0, '0false'); $JSON::Tiny::TRUE = Scalar::Util::dualvar( 1, '1true');
|
|---|