fix syntax error and add missing space in test results (formatDate, localized dates)
This commit is contained in:
parent
2353e5be5a
commit
03850ee600
1 changed files with 5 additions and 5 deletions
|
@ -76,15 +76,15 @@ Ox.formatDate <f> Formats a date according to a format string
|
|||
> Ox.formatDate(Ox.test.date, '%ED') // Localized date and time with seconds
|
||||
'01/02/2005 00:03:04'
|
||||
> Ox.formatDate(Ox.test.date, '%Ed') // Localized date and time without seconds
|
||||
'01/02/2005 00:03
|
||||
'01/02/2005 00:03'
|
||||
> Ox.formatDate(Ox.test.date, '%EL') // Long localized date with weekday
|
||||
'Sunday, January 2, 2005'
|
||||
'Sunday, January 2, 2005'
|
||||
> Ox.formatDate(Ox.test.date, '%El') // Long localized date without weekday
|
||||
'January 2, 2005'
|
||||
'January 2, 2005'
|
||||
> Ox.formatDate(Ox.test.date, '%EM') // Medium localized date with weekday
|
||||
'Sun, Jan 2, 2005'
|
||||
'Sun, Jan 2, 2005'
|
||||
> Ox.formatDate(Ox.test.date, '%Em') // Medium localized date without weekday
|
||||
'Jan 2, 2005'
|
||||
'Jan 2, 2005'
|
||||
> Ox.formatDate(Ox.test.date, '%ES') // Short localized date with century
|
||||
'01/02/2005'
|
||||
> Ox.formatDate(Ox.test.date, '%Es') // Short localized date without century
|
||||
|
|
Loading…
Reference in a new issue