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.
24 lines
442 B
24 lines
442 B
/*! |
|
* humanize-ms - index.js |
|
* Copyright(c) 2014 dead_horse <dead_horse@qq.com> |
|
* MIT Licensed |
|
*/ |
|
|
|
'use strict'; |
|
|
|
/** |
|
* Module dependencies. |
|
*/ |
|
|
|
var util = require('util'); |
|
var ms = require('ms'); |
|
|
|
module.exports = function (t) { |
|
if (typeof t === 'number') return t; |
|
var r = ms(t); |
|
if (r === undefined) { |
|
var err = new Error(util.format('humanize-ms(%j) result undefined', t)); |
|
console.warn(err.stack); |
|
} |
|
return r; |
|
};
|
|
|