(str)
| 4417 | return parseFloat(str.replace(/_/g, "")); |
| 4418 | } |
| 4419 | function stringToBigInt(str) { |
| 4420 | if (typeof BigInt !== "function") { |
| 4421 | return null; |
| 4422 | } |
| 4423 | return BigInt(str.replace(/_/g, "")); |
| 4424 | } |
| 4425 | pp$9.readRadixNumber = function(radix) { |
| 4426 | var start = this.pos; |
| 4427 | this.pos += 2; |