(bytes: Uint8Array)
| 8 | const uuidV7Regex = /^[0-9a-f]{8}-[0-9a-f]{4}-7[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$/ |
| 9 | |
| 10 | const hex = (bytes: Uint8Array): string => Array.from(bytes, (byte) => byte.toString(16).padStart(2, "0")).join("") |
| 11 | |
| 12 | describe("NodeCrypto", () => { |
| 13 | it.effect("generates empty random bytes", () => |
no test coverage detected