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

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