├── .github └── workflows │ ├── build.yml │ └── coverage.yml ├── .gitignore ├── LICENSE ├── README.md ├── filter.go ├── filter_test.go ├── go.mod └── go.sum /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavabobik/greenleaf/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavabobik/greenleaf/HEAD/.github/workflows/coverage.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavabobik/greenleaf/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavabobik/greenleaf/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavabobik/greenleaf/HEAD/README.md -------------------------------------------------------------------------------- /filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavabobik/greenleaf/HEAD/filter.go -------------------------------------------------------------------------------- /filter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavabobik/greenleaf/HEAD/filter_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavabobik/greenleaf/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slavabobik/greenleaf/HEAD/go.sum --------------------------------------------------------------------------------