pdamoc/elm-hashids - version: 1.0.4

for more information visit the package's GitHub page

Package contains the following modules:

elm-hashids

Elm port of the Hashids library. http://hashids.org

Install:
elm install pdamoc/elm-hashids
Hello, World:
import Html exposing (..)
import Hashids exposing (..)

hashids = hashidsSimple "this is my salt"
ids = encodeList hashids [1, 2, 3]
numbers = decode hashids ids

main : Html
main = 
  div []
    [ text ids
    , br [] []
    , text <| Debug.toString numbers
    ]