Remove deprecated scripts for adding head-matter to wt_config.xml, including Python and Bash implementations, to streamline configuration management.

This commit is contained in:
Torsten Schulz (local)
2025-12-04 16:34:45 +01:00
parent 4b674c7c60
commit 6e9116e819
13187 changed files with 1493219 additions and 337 deletions

30
node_modules/date-fns/esm/quartersToYears/index.js generated vendored Normal file
View File

@@ -0,0 +1,30 @@
import requiredArgs from "../_lib/requiredArgs/index.js";
import { quartersInYear } from "../constants/index.js";
/**
* @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 {number} quarters - number of quarters to be converted
*
* @returns {number} the number of quarters converted in years
* @throws {TypeError} 1 argument required
*
* @example
* // Convert 8 quarters to years
* const result = quartersToYears(8)
* //=> 2
*
* @example
* // It uses floor rounding:
* const result = quartersToYears(11)
* //=> 2
*/
export default function quartersToYears(quarters) {
requiredArgs(1, arguments);
var years = quarters / quartersInYear;
return Math.floor(years);
}