Codebase list golang-github-icrowley-fake / 3536b399-1aed-45f5-94a8-863d532491b0/main currencies.go
3536b399-1aed-45f5-94a8-863d532491b0/main

Tree @3536b399-1aed-45f5-94a8-863d532491b0/main (Download .tar.gz)

currencies.go @3536b399-1aed-45f5-94a8-863d532491b0/mainraw · history · blame

package fake

// Currency generates currency name
func Currency() string {
	return lookup(lang, "currencies", true)
}

// CurrencyCode generates currency code
func CurrencyCode() string {
	return lookup(lang, "currency_codes", true)
}