ref: ee16d84dcf13e5490dd9504791510851b53a866b
dir: /refstore/reftable/path.go/
package reftable
import "path"
// pathMatch applies path.Match to full ref names.
func pathMatch(pattern, name string) (bool, error) {
return path.Match(pattern, name)
}