Add example in moment.js cheatsheet (#1063)

Co-authored-by: Rico Sta. Cruz <rstacruz@users.noreply.github.com>
This commit is contained in:
James Prescott 2020-08-03 13:33:31 +01:00 committed by GitHub
parent 76acff1923
commit c03aa5de51
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 21 additions and 23 deletions

View File

@ -5,18 +5,17 @@
#### Date #### Date
| Example | Output | | Example | Output |
| --- | --- | | ------------------------- | ---------------------- |
| `YYYY-MM-DD` | `2014-01-01` | | `YYYY-MM-DD` | 2014-01-01 |
| `dddd, MMMM Do YYYY` | `Friday, May 16th 2014` | | `dddd, MMMM Do YYYY` | Friday, May 16th 2014 |
{: .-shortcuts} | `dddd [the] Do [of] MMMM` | Friday the 16th of May |
#### Time #### Time
| Example | Output | | Example | Output |
| --- | --- | | --------- | -------- |
| `hh:mm a` | `12:30 pm` | | `hh:mm a` | 12:30 pm |
{: .-shortcuts}
Used by [Moment.js](http://momentjs.com/docs/#/displaying/) and [date-fns/format](https://date-fns.org/v1.28.5/docs/format). Similar to Java [SimpleDateFormat](https://docs.oracle.com/javase/7/docs/api/java/text/SimpleDateFormat.html). Used by [Moment.js](http://momentjs.com/docs/#/displaying/) and [date-fns/format](https://date-fns.org/v1.28.5/docs/format). Similar to Java [SimpleDateFormat](https://docs.oracle.com/javase/7/docs/api/java/text/SimpleDateFormat.html).
@ -86,17 +85,16 @@ Used by [Moment.js](http://momentjs.com/docs/#/displaying/) and [date-fns/format
### Presets ### Presets
| Example | Output | | Example | Output |
| --- | --- | | ------- | -------------------------------- |
| `LT` | `8:30 PM` | | `LT` | 8:30 PM |
| `LTS` | `8:30:25 PM` | | `LTS` | 8:30:25 PM |
| --- | --- | | --- | --- |
| `LL` | `August 2 1985` | | `LL` | August 2 1985 |
| `ll` | `Aug 2 1985` | | `ll` | Aug 2 1985 |
| --- | --- | | --- | --- |
| `LLL` | `August 2 1985 08:30 PM` | | `LLL` | August 2 1985 08:30 PM |
| `lll` | `Aug 2 1985 08:30 PM` | | `lll` | Aug 2 1985 08:30 PM |
| --- | --- | | --- | --- |
| `LLLL` | `Thursday, August 2 1985 08:30 PM` | | `LLLL` | Thursday, August 2 1985 08:30 PM |
| `llll` | `Thu, Aug 2 1985 08:30 PM` | | `llll` | Thu, Aug 2 1985 08:30 PM |
{: .-shortcuts}