1
0
mirror of https://github.com/TwiN/gatus.git synced 2026-02-04 16:59:42 +00:00
Files
gatus/vendor/github.com/TwiN/gocache/pattern.go

13 lines
241 B
Go

package gocache
import "path/filepath"
// MatchPattern checks whether a string matches a pattern
func MatchPattern(pattern, s string) bool {
if pattern == "*" {
return true
}
matched, _ := filepath.Match(pattern, s)
return matched
}