├── .github └── workflows │ └── test.yml ├── LICENSE ├── README.md ├── example_test.go ├── go.mod ├── natural.go └── natural_test.go /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maruel/natural/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maruel/natural/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maruel/natural/HEAD/README.md -------------------------------------------------------------------------------- /example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maruel/natural/HEAD/example_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/maruel/natural 2 | 3 | go 1.21 4 | -------------------------------------------------------------------------------- /natural.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maruel/natural/HEAD/natural.go -------------------------------------------------------------------------------- /natural_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maruel/natural/HEAD/natural_test.go --------------------------------------------------------------------------------