I’m new to Elm and am running into issues with converting date to time.
I have a date picker (I am using the native type=date input) and want to convert the value somebody chooses to Time.Posix
I have the current Time.Zone of the user and the value (which comes in YYYY-MM-DD format). I’m finding things like Iso8601 - elm-iso8601-date-strings 1.1.4, which nicely handles turning ISO 8601 strings into Time.Posix but I would like to figure a way to make this work with Zone so it does not assume that the user is picking dates with utc as the zone.
Does a library like this exist? If not, where might I start?