shithub: furgit

ref: 6c605fdf71f8e710de7da10e52f8c58385cc0f80
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)
}