Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 422 Bytes

README.md

File metadata and controls

28 lines (21 loc) · 422 Bytes

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
    ]