Files
diun/vendor/go.podman.io/image/v5/docker/reference/regexp-additions.go
2025-09-13 19:47:16 +02:00

7 lines
181 B
Go

package reference
// Return true if the specified string fully matches `IdentifierRegexp`.
func IsFullIdentifier(s string) bool {
return anchoredIdentifierRegexp.MatchString(s)
}