()
| 783 | * Example: "gleaming-brewing-phoenix", "cosmic-pondering-lighthouse" |
| 784 | */ |
| 785 | export function generateWordSlug(): string { |
| 786 | const adjective = pickRandom(ADJECTIVES) |
| 787 | const verb = pickRandom(VERBS) |
| 788 | const noun = pickRandom(NOUNS) |
| 789 | return `${adjective}-${verb}-${noun}` |
| 790 | } |
| 791 | |
| 792 | /** |
| 793 | * Generate a shorter random word slug in the format "adjective-noun" |
no test coverage detected