(min, max)
| 3 | |
| 4 | // --- Helper Functions --- |
| 5 | const random = (min, max) => Math.random() * (max - min) + min; |
| 6 | const uuid = () => |
| 7 | typeof crypto !== 'undefined' && crypto.randomUUID |
| 8 | ? crypto.randomUUID() |
no outgoing calls
no test coverage detected