This commit is contained in:
Jesse Newland
2019-02-09 20:39:09 -06:00
parent de62a2eece
commit 3198627879
19 changed files with 1077 additions and 19 deletions

14
vendor/github.com/andreaskoch/go-fswatch/util.go generated vendored Normal file
View File

@@ -0,0 +1,14 @@
// Copyright 2013 Andreas Koch. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package fswatch
func sliceContainsElement(list []string, elem string) bool {
for _, t := range list {
if t == elem {
return true
}
}
return false
}