LastName returns a random last name
()
| 139 | |
| 140 | // LastName returns a random last name |
| 141 | func LastName() string { |
| 142 | return randomFrom(jsonData.LastNames) |
| 143 | } |
| 144 | |
| 145 | // FullName returns a combination of FirstName LastName randomized, gender decides the gender of the name |
| 146 | func FullName(gender int) string { |
searching dependent graphs…