(item: number)
| 112 | } |
| 113 | |
| 114 | function numberIs64Bit(item: number) { |
| 115 | return item < -Math.pow(2, 31) + 1 || item > Math.pow(2, 31) - 1; |
| 116 | } |
| 117 | |
| 118 | function serializeItems(value) { |
| 119 | if (typeof value === 'string') { |
no outgoing calls
no test coverage detected
searching dependent graphs…