a-nice-time - 一些时间格式化功能
安装
npm i a-nice-time
about_this_much
var a_nice_time = require ( 'a-nice-time' ) ;
a_nice_time . about_this_much ( 123456789 ) ; // '3 years'
a_nice_time . about_this_much ( 12345678 ) ; // '4 months'
a_nice_time . about_this_much ( 1234567 ) ; // '2 weeks'
a_nice_time . about_this_much ( 123456 ) ; // '1 day'
a_nice_time . about_this_much ( 12345 ) ; // '3 hours'
a_nice_
1