All Downloads are FREE. Search and download functionalities are using the official Maven repository.

elm.Byte.mustache Maven / Gradle / Ivy

There is a newer version: 7.8.0
Show newest version
module Byte exposing (Byte, byteDecoder, byteEncoder)

import Json.Decode as Decode exposing (Decoder)
import Json.Encode as Encode


type alias Byte =
    String


byteDecoder : Decoder Byte
byteDecoder =
    Decode.string


byteEncoder : Byte -> Encode.Value
byteEncoder model =
    Encode.string model





© 2015 - 2024 Weber Informatics LLC | Privacy Policy