| 2 | // SPDX-License-Identifier: GPL-3.0 |
| 3 | |
| 4 | interface BigInt { |
| 5 | toJSON(): string; |
| 6 | } |
| 7 | |
| 8 | // Make BigInt json serializable, note this doesn't go from string -> BigInt when parsing |
| 9 | BigInt.prototype.toJSON = function () { |
no outgoing calls
no test coverage detected