go integration and wikipedia

This commit is contained in:
jlimolina 2026-03-28 18:30:07 +01:00
parent 47a252e339
commit ee90335b92
7828 changed files with 1307913 additions and 20807 deletions

24
frontend/node_modules/date-fns/yearsToQuarters.js generated vendored Normal file
View file

@ -0,0 +1,24 @@
"use strict";
exports.yearsToQuarters = yearsToQuarters;
var _index = require("./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
*/
function yearsToQuarters(years) {
return Math.trunc(years * _index.quartersInYear);
}