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