Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/NativeScript/firebase
/ numberHasDecimals
Function
numberHasDecimals
packages/firebase-firestore/index.android.ts:110–112 ·
view source on GitHub ↗
(item: number)
Source
from the content-addressed store, hash-verified
108
}
109
110
function
numberHasDecimals(item: number) {
111
return
!(item % 1 === 0);
112
}
113
114
function
numberIs64Bit(item: number) {
115
return
item < -Math.pow(2, 31) + 1 || item > Math.pow(2, 31) - 1;
Callers
1
serializeItems
Function · 0.70
Calls
no outgoing calls
Tested by
no test coverage detected