summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Tests/operators/binary-bitwise-left-shift.js
AgeCommit message (Collapse)Author
2022-08-24LibJS: Fix that leftshift for BigInts did not round downdavidot
For negative number this previously rounded towards zero instead of the intended always rounding down.
2021-02-05LibJS: Improve correctness of rounding and bitwise operationsAndreas Kling
Patch from Anonymous
2021-01-12Libraries: Move to Userland/Libraries/Andreas Kling