Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Done
-
Apache FalconJX 0.8.0
-
None
Description
parseInt does not correctly process hex strings without no second parameter
parseInt("0x99")
this should calculate as 153
it is currently compiled to
parseInt("0x99",10)
in js which evaluates to 0