vendor: Update github.com/gobwas/glob

This commit is contained in:
Jakob Borg
2016-09-13 21:42:15 +02:00
parent 06dc91fadf
commit c3c7798446
15 changed files with 899 additions and 882 deletions

13
vendor/github.com/gobwas/glob/util/strings/strings.go generated vendored Normal file
View File

@@ -0,0 +1,13 @@
package strings
import "strings"
func IndexAnyRunes(s string, rs []rune) int {
for _, r := range rs {
if i := strings.IndexRune(s, r); i != -1 {
return i
}
}
return -1
}