MCPcopy Create free account
hub / github.com/GamerHack/GamerHack.github.io / check_not_in_range

Function check_not_in_range

g2all/900/module/int64.js:21–23  ·  view source on GitHub ↗
(x)

Source from the content-addressed store, hash-verified

19const isInteger = Number.isInteger;
20
21function 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

Callers 2

lohi_from_oneFunction · 0.70
constructorMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected