MCPcopy Create free account
hub / github.com/NativeScript/firebase / numberIs64Bit

Function numberIs64Bit

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

Source from the content-addressed store, hash-verified

21}
22
23function numberIs64Bit(item: number) {
24 return item < -Math.pow(2, 31) + 1 || item > Math.pow(2, 31) - 1;
25}
26
27export function serialize(data: any): any {
28 switch (typeof data) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected