{"ScriptPreparationCode":null,"TestCases":[{"Name":"native","Code":"const a = parseFloat(\u0027123.456\u0027);\r\nconst b = parseFloat(\u0027123.456\u0027);\r\n//const c = isNan(a) \u0026\u0026 isNan(b);\r\nconst d = a \u003E b || a \u003C b;\r\nconst e = (a \u002B b) * b;","IsDeferred":false},{"Name":"decimal.js","Code":"const a = new Decimal(\u0027123.456\u0027);\r\nconst b = new Decimal(\u0027123.456\u0027);\r\n//const c = a.isNan() \u0026\u0026 b.isNan();\r\nconst d = a.greaterThan(b) || a.lessThan(b);\r\nconst e = a.plus(b).times(b);","IsDeferred":false},{"Name":"big.js","Code":"const a = new Big(\u0027123.456\u0027);\r\nconst b = new Big(\u0027123.456\u0027);\r\n//const c = a.isNan() \u0026\u0026 b.isNan();\r\nconst d = a.gt(b) || a.lt(b);\r\nconst e = a.plus(b).mul(b);","IsDeferred":false},{"Name":"bignumber.js","Code":"var a = new BigNumber(\u0027123.456\u0027);\r\nvar b = new BigNumber(\u0027123.456\u0027);\r\n//const c = a.isNan() \u0026\u0026 b.isNan();\r\nconst d = a.gt(b) || a.lt(b);\r\nconst e = a.plus(b).multipliedBy(b);","IsDeferred":false}]}