shithub: furgit

ref: f21bdf7d1cc1781367fa1274b7e8a8370b90950d
dir: /refstore/reftable/path.go/

View raw version
package reftable

import "path"

// pathMatch applies path.Match to full ref names.
func pathMatch(pattern, name string) (bool, error) {
	return path.Match(pattern, name)
}