Codebase list golang-github-icrowley-fake / upstream/0.0_git20221112.d7b7e22+ds currencies.go
upstream/0.0_git20221112.d7b7e22+ds

Tree @upstream/0.0_git20221112.d7b7e22+ds (Download .tar.gz)

currencies.go @upstream/0.0_git20221112.d7b7e22+dsraw · 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)
}