This repository has been archived on 2022-10-02. You can view files and clone it, but cannot push or open issues or pull requests.
dcbot-old/utils/language_tag_from_world_name.go

13 lines
212 B
Go
Raw Normal View History

package utils
2020-05-29 17:22:52 +00:00
import (
"github.com/tribalwarshelp/shared/models"
)
func LanguageTagFromWorldName(world string) models.LanguageTag {
2020-05-29 17:22:52 +00:00
if len(world) < 2 {
return ""
}
return models.LanguageTag(world[0:2])
2020-05-29 17:22:52 +00:00
}