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.
30 lines
785 B
30 lines
785 B
"use strict";
|
|
exports.millisecondsToHours = millisecondsToHours;
|
|
var _index = require("./constants.cjs");
|
|
|
|
/**
|
|
* @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
|
|
*/
|
|
function millisecondsToHours(milliseconds) {
|
|
const hours = milliseconds / _index.millisecondsInHour;
|
|
return Math.trunc(hours);
|
|
}
|
|
|