JHSN

Results 1 issues of JHSN

The `PrefixSuffix.Match` doesn't consider the condition that the prefix overlaps with the suffix. version: `v0.2.3` POC: ```go func main() { g, _ := glob.Compile("a*ant") fmt.Println(g.Match("an ant")) // true EXPECTED fmt.Println(g.Match("ant"))...