├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── benchmarks_test.go ├── go.mod ├── is.go ├── is_test.go └── patterns.go /.gitignore: -------------------------------------------------------------------------------- 1 | tmp -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliuygur/is/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliuygur/is/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliuygur/is/HEAD/README.md -------------------------------------------------------------------------------- /benchmarks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliuygur/is/HEAD/benchmarks_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/alioygur/is 2 | 3 | go 1.15 4 | -------------------------------------------------------------------------------- /is.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliuygur/is/HEAD/is.go -------------------------------------------------------------------------------- /is_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliuygur/is/HEAD/is_test.go -------------------------------------------------------------------------------- /patterns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliuygur/is/HEAD/patterns.go --------------------------------------------------------------------------------