tools.js
Use
Install
yarn add tools.js or npm i -S tools.js
ES2015+:
目录
API
Date
format([date, template])
返回指定格式的时间字符串。
Arguments: date: timestamp or FormatDateTime; defalut: template: y: year M: month d: day h: hour m: minute s: second; defalut: 'y-M-d h:m' Returns: String Example: // 2018-06-05 00:00 // 2018/06/05 0:0:0
fromNow(date[, date2])
计算并返回可读时间差。
Arguments: date: timestamp or FormatDateTime date2: timestamp or FormatDateTime Returns: String: "1秒以前 or 1分钟以前 or 1小时以前 or 1天以前 ..." Example: ; // 2018/01/01 => now // 2018/01/01 => 2018/01/02
Number
isNumber(num)
判断num
是否为Number
。
Arguments: num: any Returns: Boolean Example: //false //false // true