1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-03 01:39:24 +02:00
Oinktube/node_modules/date-fns/yearsToQuarters.js
2025-07-10 15:28:42 -03:00

25 lines
600 B
JavaScript

import { quartersInYear } from "./constants.js";
/**
* @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;