(name string)
| 70 | } |
| 71 | |
| 72 | func checkTag(name string) error { |
| 73 | return checkElement("tag", name, tagChars, 1, 128) |
| 74 | } |
| 75 | |
| 76 | // NewTag returns a new Tag representing the given name, according to the given strictness. |
| 77 | func NewTag(name string, opts ...Option) (Tag, error) { |
no test coverage detected
searching dependent graphs…