mirror of https://github.com/ghostfolio/ghostfolio
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.
31 lines
806 B
31 lines
806 B
import { millisecondsInHour } from "./constants.js";
|
|
|
|
/**
|
|
* @name millisecondsToHours
|
|
* @category Conversion Helpers
|
|
* @summary Convert milliseconds to hours.
|
|
*
|
|
* @description
|
|
* Convert a number of milliseconds to a full number of hours.
|
|
*
|
|
* @param milliseconds - The number of milliseconds to be converted
|
|
*
|
|
* @returns The number of milliseconds converted in hours
|
|
*
|
|
* @example
|
|
* // Convert 7200000 milliseconds to hours:
|
|
* const result = millisecondsToHours(7200000)
|
|
* //=> 2
|
|
*
|
|
* @example
|
|
* // It uses floor rounding:
|
|
* const result = millisecondsToHours(7199999)
|
|
* //=> 1
|
|
*/
|
|
export function millisecondsToHours(milliseconds) {
|
|
const hours = milliseconds / millisecondsInHour;
|
|
return Math.trunc(hours);
|
|
}
|
|
|
|
// Fallback for modularized imports:
|
|
export default millisecondsToHours;
|
|
|