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