gatus/pattern/pattern.go

13 lines
227 B
Go
Raw Normal View History

2020-10-02 01:57:11 +02:00
package pattern
import "path/filepath"
// Match checks whether a string matches a pattern
func Match(pattern, s string) bool {
if pattern == "*" {
return true
}
matched, _ := filepath.Match(pattern, s)
return matched
}