├── .gitignore ├── LICENSE ├── README.md ├── elm.json ├── src └── Hashids.elm └── tests ├── .gitignore └── Tests.elm /.gitignore: -------------------------------------------------------------------------------- 1 | elm-stuff/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdamoc/elm-hashids/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdamoc/elm-hashids/HEAD/README.md -------------------------------------------------------------------------------- /elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdamoc/elm-hashids/HEAD/elm.json -------------------------------------------------------------------------------- /src/Hashids.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdamoc/elm-hashids/HEAD/src/Hashids.elm -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | /elm-stuff/ 2 | -------------------------------------------------------------------------------- /tests/Tests.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdamoc/elm-hashids/HEAD/tests/Tests.elm --------------------------------------------------------------------------------