MCPcopy Index your code
hub / github.com/NativeScript/firebase / numberHasDecimals

Function numberHasDecimals

packages/firebase-database/index.ios.ts:19–21  ·  view source on GitHub ↗
(item: number)

Source from the content-addressed store, hash-verified

17});
18
19function numberHasDecimals(item: number) {
20 return !(item % 1 === 0);
21}
22
23function numberIs64Bit(item: number) {
24 return item < -Math.pow(2, 31) + 1 || item > Math.pow(2, 31) - 1;

Callers 1

serializeFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…