├── .github └── workflows │ └── go.yml ├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── README.md ├── camelcase.go ├── camelcase_test.go ├── doc.go ├── escaper.go ├── escaper_test.go ├── excerpt.go ├── excerpt_test.go ├── go.mod ├── parameterize.go ├── parameterize_test.go ├── plural_rules.go ├── pluralize.go ├── pluralize_test.go ├── stringfy.go ├── sub_rules.go ├── truncate.go ├── truncate_test.go ├── underscore.go ├── underscore_test.go ├── word_wrap.go └── word_wrap_test.go /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgsigner/stringfy/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgsigner/stringfy/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgsigner/stringfy/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgsigner/stringfy/HEAD/README.md -------------------------------------------------------------------------------- /camelcase.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgsigner/stringfy/HEAD/camelcase.go -------------------------------------------------------------------------------- /camelcase_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgsigner/stringfy/HEAD/camelcase_test.go -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgsigner/stringfy/HEAD/doc.go -------------------------------------------------------------------------------- /escaper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgsigner/stringfy/HEAD/escaper.go -------------------------------------------------------------------------------- /escaper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgsigner/stringfy/HEAD/escaper_test.go -------------------------------------------------------------------------------- /excerpt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgsigner/stringfy/HEAD/excerpt.go -------------------------------------------------------------------------------- /excerpt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgsigner/stringfy/HEAD/excerpt_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/hgsigner/stringfy 2 | 3 | go 1.13 4 | -------------------------------------------------------------------------------- /parameterize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgsigner/stringfy/HEAD/parameterize.go -------------------------------------------------------------------------------- /parameterize_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgsigner/stringfy/HEAD/parameterize_test.go -------------------------------------------------------------------------------- /plural_rules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgsigner/stringfy/HEAD/plural_rules.go -------------------------------------------------------------------------------- /pluralize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgsigner/stringfy/HEAD/pluralize.go -------------------------------------------------------------------------------- /pluralize_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgsigner/stringfy/HEAD/pluralize_test.go -------------------------------------------------------------------------------- /stringfy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgsigner/stringfy/HEAD/stringfy.go -------------------------------------------------------------------------------- /sub_rules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgsigner/stringfy/HEAD/sub_rules.go -------------------------------------------------------------------------------- /truncate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgsigner/stringfy/HEAD/truncate.go -------------------------------------------------------------------------------- /truncate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgsigner/stringfy/HEAD/truncate_test.go -------------------------------------------------------------------------------- /underscore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgsigner/stringfy/HEAD/underscore.go -------------------------------------------------------------------------------- /underscore_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgsigner/stringfy/HEAD/underscore_test.go -------------------------------------------------------------------------------- /word_wrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgsigner/stringfy/HEAD/word_wrap.go -------------------------------------------------------------------------------- /word_wrap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgsigner/stringfy/HEAD/word_wrap_test.go --------------------------------------------------------------------------------