We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
toRFC3339String bottom
> toRFC3339String bottom (RFC3339String "000-271820-01-01T00:00:00.0Z")
Possibly due to bottom for Year being negative:
bottom
Year
https://github.com/purescript/purescript-datetime/blob/ffdd94fa0c4ac5d89107b0437aece0556970dcef/src/Data/Date/Component.purs#L28
The text was updated successfully, but these errors were encountered:
> import Data.PreciseDateTime.Internal (dateTimeFormatISO) > import Data.Formatter.DateTime (format) > format dateTimeFormatISO bottom "000-271820-01-01T00:00:00"
Sorry, something went wrong.
I think this might be an issue with purescript-formatters.
purescript-formatters
> import Data.PreciseDateTime.Internal (dateFormat) > show dateFormat "(YearFull : (Placeholder \"-\") : MonthTwoDigits : (Placeholder \"-\") : DayOfMonthTwoDigits : Nil)" > format dateFormat bottom "000-271820-01-01"
> import Data.Formatter.DateTime (FormatterCommand(..)) > import Data.List (fromFoldable) > format (fromFoldable [ YearFull ]) bottom "000-271820"
No branches or pull requests
Possibly due to
bottom
forYear
being negative:https://github.com/purescript/purescript-datetime/blob/ffdd94fa0c4ac5d89107b0437aece0556970dcef/src/Data/Date/Component.purs#L28
The text was updated successfully, but these errors were encountered: