in api/document.go [51:59]
func IsOneOf(check string, slice []string) bool { for _, v := range slice { if v == check { return true } } return false }