java.text.simple-date-format
v0.1.1
Published
A utility class to format Date object in Javascript. It is heavily influenced by SimpleDateFormat class of Java and follow most of its specifications.
Downloads
2
Readme
Date format like java SimpleDateFormat
var dateFormat=new SimpleDateFormat('yyyy-MM-dd HH:mm:ss');
var date1=new Date(2000,1,1,1,1,1,999);
assert.strictEqual(dateFormat.format(date1),"2000-02-01 01:01:01");
var dateFormat=new SimpleDateFormat('yyyy-MM-dd HH:mm:ss');
var date1=new Date(2000,1,1,1,1,1);
assert.strictEqual(dateFormat.parse("2000-02-01 01:01:01").getTime(),date1.getTime());