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/monthsToQuarters/index.js generated vendored Normal file
View File

@@ -0,0 +1,30 @@
import requiredArgs from "../_lib/requiredArgs/index.js";
import { monthsInQuarter } from "../constants/index.js";
/**
* @name monthsToQuarters
* @category Conversion Helpers
* @summary Convert number of months to quarters.
*
* @description
* Convert a number of months to a full number of quarters.
*
* @param {number} months - number of months to be converted.
*
* @returns {number} the number of months converted in quarters
* @throws {TypeError} 1 argument required
*
* @example
* // Convert 6 months to quarters:
* const result = monthsToQuarters(6)
* //=> 2
*
* @example
* // It uses floor rounding:
* const result = monthsToQuarters(7)
* //=> 2
*/
export default function monthsToQuarters(months) {
requiredArgs(1, arguments);
var quarters = months / monthsInQuarter;
return Math.floor(quarters);
}