shithub: furgit

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