()
| 794 | * Example: "graceful-unicorn", "cosmic-lighthouse" |
| 795 | */ |
| 796 | export function generateShortWordSlug(): string { |
| 797 | const adjective = pickRandom(ADJECTIVES) |
| 798 | const noun = pickRandom(NOUNS) |
| 799 | return `${adjective}-${noun}` |
| 800 | } |
| 801 |
no test coverage detected