mirror of
https://github.com/samsonjs/strftime.git
synced 2026-04-26 14:47:43 +00:00
Merge 163efa1964 into 4bcd6d2a2f
This commit is contained in:
commit
89aceea381
1 changed files with 3 additions and 0 deletions
|
|
@ -17,6 +17,8 @@ Usage
|
||||||
|
|
||||||
var strftime = require('strftime')
|
var strftime = require('strftime')
|
||||||
console.log(strftime('%B %d, %y %H:%M:%S')) // => April 28, 2011 18:21:08
|
console.log(strftime('%B %d, %y %H:%M:%S')) // => April 28, 2011 18:21:08
|
||||||
|
console.log(strftime('%F %T', new Date(1307472705067))) // => 2011-06-07 18:51:45
|
||||||
|
|
||||||
|
|
||||||
If you want to localize it:
|
If you want to localize it:
|
||||||
|
|
||||||
|
|
@ -34,6 +36,7 @@ If you want to localize it:
|
||||||
PM: 'PM'
|
PM: 'PM'
|
||||||
}
|
}
|
||||||
console.log(strftime('%B %d, %y %H:%M:%S', it_IT)) // => aprile 28, 2011 18:21:08
|
console.log(strftime('%B %d, %y %H:%M:%S', it_IT)) // => aprile 28, 2011 18:21:08
|
||||||
|
console.log(strftime('%B %d, %y %H:%M:%S', new Date(1307472705067), it_IT)) // => giugno 7, 2011 18:51:45
|
||||||
|
|
||||||
And if you don't want to pass a localization object every time you can get a localized `strftime` function like so:
|
And if you don't want to pass a localization object every time you can get a localized `strftime` function like so:
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue