(item: number)
| 5 | } |
| 6 | |
| 7 | function numberIs64Bit(item: number) { |
| 8 | return item < -Math.pow(2, 31) + 1 || item > Math.pow(2, 31) - 1; |
| 9 | } |
| 10 | |
| 11 | export function serialize(data: any, wrapPrimitives: boolean = false): any { |
| 12 | if (global.isIOS) { |
nothing calls this directly
no outgoing calls
no test coverage detected