1.0.1 • Published 7 years ago

timestamp-format v1.0.1

Weekly downloads
29
License
ISC
Repository
github
Last release
7 years ago

timestamp-format

时间戳格式化


install

安装

$ npm install timestamp-format

usage

使用

    var format=require('timestamp-format');

    format('yyyy-MM-dd hh:mm:ss.S',new Date().getTime());//=>2016-08-22 12:30:55.5
    format('yy-MM-dd hh:mm:ss.S',new Date().getTime());//=>16-08-22 12:30:55.5
    format('yy-M-d hh:mm:ss.S',new Date().getTime());//=>16-8-22 12:30:55.5
    format('hh:mm:ss',new Date().getTime());//=>12:30:55