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
698 B
30 lines
698 B
"use strict";
|
|
exports.minutesToHours = minutesToHours;
|
|
var _index = require("./constants.cjs");
|
|
|
|
/**
|
|
* @name minutesToHours
|
|
* @category Conversion Helpers
|
|
* @summary Convert minutes to hours.
|
|
*
|
|
* @description
|
|
* Convert a number of minutes to a full number of hours.
|
|
*
|
|
* @param minutes - The number of minutes to be converted
|
|
*
|
|
* @returns The number of minutes converted in hours
|
|
*
|
|
* @example
|
|
* // Convert 140 minutes to hours:
|
|
* const result = minutesToHours(120)
|
|
* //=> 2
|
|
*
|
|
* @example
|
|
* // It uses floor rounding:
|
|
* const result = minutesToHours(179)
|
|
* //=> 2
|
|
*/
|
|
function minutesToHours(minutes) {
|
|
const hours = minutes / _index.minutesInHour;
|
|
return Math.trunc(hours);
|
|
}
|
|
|