DFS_Shuo_Chen e2eb47a926 V1.16.9 11 mēneši atpakaļ
..
lib e2eb47a926 V1.16.9 11 mēneši atpakaļ
test e2eb47a926 V1.16.9 11 mēneši atpakaļ
.eslintrc e2eb47a926 V1.16.9 11 mēneši atpakaļ
.npmignore e2eb47a926 V1.16.9 11 mēneši atpakaļ
.travis.yml e2eb47a926 V1.16.9 11 mēneši atpakaļ
LICENSE e2eb47a926 V1.16.9 11 mēneši atpakaļ
README.md e2eb47a926 V1.16.9 11 mēneši atpakaļ
package.json e2eb47a926 V1.16.9 11 mēneši atpakaļ

README.md

date-format

node.js formatting of Date objects as strings. Probably exactly the same as some other library out there.

npm install date-format

usage

var format = require('date-format');
format.asString(); //defaults to ISO8601 format and current date.
format.asString(new Date()); //defaults to ISO8601 format
format.asString('hh:mm:ss.SSS', new Date()); //just the time

or

var format = require('date-format');
format(); //defaults to ISO8601 format and current date.
format(new Date());
format('hh:mm:ss.SSS', new Date());

Format string can be anything, but the following letters will be replaced (and leading zeroes added if necessary):

  • dd - date.getDate()
  • MM - date.getMonth() + 1
  • yy - date.getFullYear().toString().substring(2, 4)
  • yyyy - date.getFullYear()
  • hh - date.getHours()
  • mm - date.getMinutes()
  • ss - date.getSeconds()
  • SSS - date.getMilliseconds()
  • O - timezone offset in +hm format

That's it.