(input: any)
| 58 | } |
| 59 | |
| 60 | function isValidBigIntOrNumber(input: any): boolean { |
| 61 | if (typeof input === "bigint") { |
| 62 | return true; |
| 63 | } |
| 64 | else if (typeof input === "number") { |
| 65 | return true; |
| 66 | } |
| 67 | return false; |
| 68 | } |
| 69 | |
| 70 | |
| 71 | export { |
no outgoing calls
no test coverage detected