(x)
| 19 | const isInteger = Number.isInteger; |
| 20 | |
| 21 | function check_not_in_range(x) { |
| 22 | return !(isInteger(x) && -0x80000000 <= x && x <= 0xffffffff); |
| 23 | } |
| 24 | |
| 25 | // use this if you want to support objects convertible to Int but only need |
| 26 | // their low/high bits. creating a Int is slower compared to just using this |
no outgoing calls
no test coverage detected