mirror of
https://github.com/containers/podman.git
synced 2025-12-04 20:28:40 +08:00
7 lines
181 B
Go
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)
|
|
}
|