├── .circleci └── config.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── TODO.md ├── array.go ├── complex-string.go ├── complex-string_test.go ├── convert.go ├── datetime.go ├── datetime_test.go ├── email.go ├── env.go ├── env_test.go ├── env_test.txt ├── filters.go ├── go.mod ├── handy.go ├── handy_test.go ├── handydatetime-translations.go ├── handystring_test.go ├── handytranslations.go ├── http.go ├── http_test.go ├── inarray.go ├── inarray_test.go ├── name.go ├── name_test.go ├── password.go ├── random-numeric-string.go ├── random-string.go ├── random.go ├── region-bra.go ├── reshape.go └── transform.go /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelpragier/handy/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelpragier/handy/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelpragier/handy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelpragier/handy/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelpragier/handy/HEAD/TODO.md -------------------------------------------------------------------------------- /array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelpragier/handy/HEAD/array.go -------------------------------------------------------------------------------- /complex-string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelpragier/handy/HEAD/complex-string.go -------------------------------------------------------------------------------- /complex-string_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelpragier/handy/HEAD/complex-string_test.go -------------------------------------------------------------------------------- /convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelpragier/handy/HEAD/convert.go -------------------------------------------------------------------------------- /datetime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelpragier/handy/HEAD/datetime.go -------------------------------------------------------------------------------- /datetime_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelpragier/handy/HEAD/datetime_test.go -------------------------------------------------------------------------------- /email.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelpragier/handy/HEAD/email.go -------------------------------------------------------------------------------- /env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelpragier/handy/HEAD/env.go -------------------------------------------------------------------------------- /env_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelpragier/handy/HEAD/env_test.go -------------------------------------------------------------------------------- /env_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelpragier/handy/HEAD/env_test.txt -------------------------------------------------------------------------------- /filters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelpragier/handy/HEAD/filters.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/miguelpragier/handy 2 | 3 | go 1.13 4 | -------------------------------------------------------------------------------- /handy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelpragier/handy/HEAD/handy.go -------------------------------------------------------------------------------- /handy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelpragier/handy/HEAD/handy_test.go -------------------------------------------------------------------------------- /handydatetime-translations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelpragier/handy/HEAD/handydatetime-translations.go -------------------------------------------------------------------------------- /handystring_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelpragier/handy/HEAD/handystring_test.go -------------------------------------------------------------------------------- /handytranslations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelpragier/handy/HEAD/handytranslations.go -------------------------------------------------------------------------------- /http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelpragier/handy/HEAD/http.go -------------------------------------------------------------------------------- /http_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelpragier/handy/HEAD/http_test.go -------------------------------------------------------------------------------- /inarray.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelpragier/handy/HEAD/inarray.go -------------------------------------------------------------------------------- /inarray_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelpragier/handy/HEAD/inarray_test.go -------------------------------------------------------------------------------- /name.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelpragier/handy/HEAD/name.go -------------------------------------------------------------------------------- /name_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelpragier/handy/HEAD/name_test.go -------------------------------------------------------------------------------- /password.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelpragier/handy/HEAD/password.go -------------------------------------------------------------------------------- /random-numeric-string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelpragier/handy/HEAD/random-numeric-string.go -------------------------------------------------------------------------------- /random-string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelpragier/handy/HEAD/random-string.go -------------------------------------------------------------------------------- /random.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelpragier/handy/HEAD/random.go -------------------------------------------------------------------------------- /region-bra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelpragier/handy/HEAD/region-bra.go -------------------------------------------------------------------------------- /reshape.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelpragier/handy/HEAD/reshape.go -------------------------------------------------------------------------------- /transform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelpragier/handy/HEAD/transform.go --------------------------------------------------------------------------------