Skip to content

Instantly share code, notes, and snippets.

@mkoryak
Created May 29, 2014 18:01
Show Gist options
  • Save mkoryak/b3975e49ad72dc9c5cae to your computer and use it in GitHub Desktop.
Save mkoryak/b3975e49ad72dc9c5cae to your computer and use it in GitHub Desktop.
humanize ms
/**
* Humanize the given `ms`.
*
* @param {Number} m
* @return {String}
*/
function humanize(ms) {
var sec = 1000
, min = 60 * 1000
, hour = 60 * min;
if (ms >= hour) return (ms / hour).toFixed(1) + 'h';
if (ms >= min) return (ms / min).toFixed(1) + 'm';
if (ms >= sec) return (ms / sec | 0) + 's';
return ms + 'ms';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment