UNPKG

303 BJavaScriptView Raw
1const formatDuration = ms => {
2 if (ms < 0) ms = -ms;
3 return {
4 day: Math.floor(ms / 86400000),
5 hour: Math.floor(ms / 3600000) % 24,
6 minute: Math.floor(ms / 60000) % 60,
7 second: Math.floor(ms / 1000) % 60,
8 millisecond: Math.floor(ms) % 1000
9 };
10};
11
12export default formatDuration;