File: regexp-additions.go

package info (click to toggle)
golang-github-containers-image 5.28.0-4
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 5,104 kB
  • sloc: sh: 194; makefile: 73
file content (6 lines) | stat: -rw-r--r-- 181 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
package reference

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