purescript-contrib / purescript-formatters

Formatting and printing for numeric and date/time/interval values
Apache License 2.0
41 stars 30 forks source link

Allow single digit day of month dates #13

Closed negator closed 7 years ago

negator commented 7 years ago

It would be nice to be able to allow single digit dates such as Jan 1, rather than Jan 01. This PR is a very simple change to allow this.

CLAassistant commented 7 years ago

CLA assistant check
All committers have signed the CLA.

garyb commented 7 years ago

I think ideally we'd want to add an extra format/parse rule to explicitly support D, as well as the DD that is currently there.

negator commented 7 years ago

Make sense. I've updated the code to add support for D, trying to stay consistent with moment.js semantics. https://github.com/moment/moment/issues/2554#issuecomment-130468428

garyb commented 7 years ago

Thanks, and those parsing semantics make sense 👍