All Projects → truqu → elm-base64

truqu / elm-base64

Licence: MIT license
Elm package for Base64 encoding and decoding

Programming Languages

elm
856 projects

Elm-Base64

Build Status

A base 64 encoding and decoding library for Elm.

Usage

Add the import to the elm module where you want to do some base64 en- or decoding.

import Base64

To decode a String use

decode : String -> Result String String
decode encodedString = Base64.decode encodedString

To encode a String use

encode : String -> String
encode regularString = Base64.encode regularString
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].