dashboard-v2/frontend/src/js/timeutil.js
2021-07-06 17:13:08 +01:00

11 lines
254 B
JavaScript

export function toDays(value) {
return Math.floor(value / 86400);
}
export function toHours(value) {
return Math.floor((value % 86400) / 3600);
}
export function toMinutes(value) {
return Math.floor((value % 86400 % 3600) / 60);
}