shithub: furgit

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