(item)
| 137 | |
| 138 | // Also preserves undefined. |
| 139 | function Convert(item) { |
| 140 | if (typeof item == 'bigint') { |
| 141 | return Number(item); |
| 142 | } |
| 143 | return item; |
| 144 | } |
| 145 | |
| 146 | function ToNumbers(array) { |
| 147 | let result = []; |
no outgoing calls
no test coverage detected