timestamp-format
v1.0.1
Published
format timestamp to a template that you param
Downloads
7
Maintainers
Readme
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