You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
837816638@qq.com b02b851162
工商大学管理系统代码
5 years ago
..
lib 工商大学管理系统代码 5 years ago
test 工商大学管理系统代码 5 years ago
.npmignore 工商大学管理系统代码 5 years ago
LICENSE 工商大学管理系统代码 5 years ago
README.md 工商大学管理系统代码 5 years ago
package.json 工商大学管理系统代码 5 years ago

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(new Date()); //defaults to ISO8601 format
    format.asString('hh:mm:ss.SSS', new Date()); //just the time

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.