ladybird/Userland/Libraries/LibJS/Tests/builtins/Number
Ben Abraham a9c9c8c076 LibJS: Fix rounding issues in Number.toFixed
toFixed was not rounding properly when trimming a number.
ie: (0.00006).toFixed(4) should be "0.00001" but was returning "0.0000"
2022-03-02 08:34:04 +01:00
..
Number-constants.js
Number.isFinite.js
Number.isInteger.js LibJS/Tests: Enable Number.isInteger() test that now passes 2022-01-24 20:39:01 +00:00
Number.isNaN.js
Number.isSafeInteger.js
Number.js
Number.parseFloat.js
Number.parseInt.js
Number.prototype.js
Number.prototype.toExponential.js LibJS: Implement Number.prototype.toExponential 2022-01-04 13:07:42 +00:00
Number.prototype.toFixed.js LibJS: Fix rounding issues in Number.toFixed 2022-03-02 08:34:04 +01:00
Number.prototype.toLocaleString.js
Number.prototype.toPrecision.js LibJS: Implement Number.prototype.toPrecision 2022-01-04 13:07:42 +00:00
Number.prototype.toString.js
Number.prototype.valueOf.js