shithub: furgit

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