├── .circleci └── config.yml ├── .gitignore ├── History.md ├── Readme.md ├── benchmarks_test.go ├── snake.go └── snake_test.go /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/go-snakecase/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/go-snakecase/HEAD/.gitignore -------------------------------------------------------------------------------- /History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/go-snakecase/HEAD/History.md -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/go-snakecase/HEAD/Readme.md -------------------------------------------------------------------------------- /benchmarks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/go-snakecase/HEAD/benchmarks_test.go -------------------------------------------------------------------------------- /snake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/go-snakecase/HEAD/snake.go -------------------------------------------------------------------------------- /snake_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/go-snakecase/HEAD/snake_test.go --------------------------------------------------------------------------------