(value: unknown)
| 53 | } |
| 54 | |
| 55 | export function serializeForInlineScript(value: unknown): string { |
| 56 | return JSON.stringify(value).replace(/</g, '\\u003c'); |
| 57 | } |
| 58 | |
| 59 | export function generateRandomCode(length = 6) { |
| 60 | const getRandomDigit = () => Math.floor(Math.random() * (10)); // 0-9 |
no outgoing calls
no test coverage detected