mirror of
https://github.com/oven-sh/bun
synced 2026-02-16 22:01:47 +00:00
### What does this PR do? Replaces usages of `jsDoubleNumber` with `jsNumber` in places where the value is likely to be either a double or strict int32. `jsNumber` will decide to use `NumberTag` or `EncodeAsDouble`. If the number is used in a lot of arithmetic this could boost performance (related #18585). ### How did you verify your code works? CI