UNPKG
prettydate
Version:
latest (0.0.1)
0.0.1
Format dates nicely
github.com/bluesmoon/node-prettydate
bluesmoon/node-prettydate
prettydate
/
lib
/
test.js
9 lines
(5 loc)
•
246 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
strftime=
require
(
'./strftime'
); formats =
"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ%"
for
(i=
0
; i<formats.
length
; i++)
console
.
log
(formats[i],
strftime
(
new
Date
,
"%"
+ formats[i]));
console
.
log
(
"%%%%r"
,
strftime
(
new
Date
,
"%%r"
));