Skip to content

stil4m/rfc2822-datetime

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RFC2822 Datetime

Elm package that supports parsing datetime strings specified in the RFC2822.

module Main exposing (..)

import Rfc2822Datetime exposing (Datetime)

parsedDate : Result String Datetime
parsedDate =
    Rfc2822Datetime.parse "Mon, 06 Mar 2017 21:22:23 +0000"

Please report issues if you encounter any and feature requests.