Adjective returns a random adjective
()
| 313 | |
| 314 | // Adjective returns a random adjective |
| 315 | func Adjective() string { |
| 316 | return randomFrom(jsonData.Adjectives) |
| 317 | } |
| 318 | |
| 319 | func uppercaseFirstLetter(word string) string { |
| 320 | a := []rune(word) |
searching dependent graphs…