Some checks failed
CI/CD Pipeline / unit-tests (push) Failing after 1m16s
CI/CD Pipeline / integration-tests (push) Failing after 2m32s
CI/CD Pipeline / lint (push) Successful in 5m22s
CI/CD Pipeline / e2e-tests (push) Has been skipped
CI/CD Pipeline / build (push) Has been skipped
26 lines
601 B
JavaScript
26 lines
601 B
JavaScript
import { quartersInYear } from "./constants.mjs";
|
|
|
|
/**
|
|
* @name yearsToQuarters
|
|
* @category Conversion Helpers
|
|
* @summary Convert years to quarters.
|
|
*
|
|
* @description
|
|
* Convert a number of years to a full number of quarters.
|
|
*
|
|
* @param years - The number of years to be converted
|
|
*
|
|
* @returns The number of years converted in quarters
|
|
*
|
|
* @example
|
|
* // Convert 2 years to quarters
|
|
* const result = yearsToQuarters(2)
|
|
* //=> 8
|
|
*/
|
|
export function yearsToQuarters(years) {
|
|
return Math.trunc(years * quartersInYear);
|
|
}
|
|
|
|
// Fallback for modularized imports:
|
|
export default yearsToQuarters;
|