(n, min, max)
| 2990 | let __cryptoTransferUiJob = null; |
| 2991 | |
| 2992 | function clampNum(n, min, max) { |
| 2993 | return Math.max(min, Math.min(max, n)); |
| 2994 | } |
| 2995 | |
| 2996 | function formatBytes(n) { |
| 2997 | const num = Number(n || 0); |
no outgoing calls
no test coverage detected