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

24
node_modules/date-fns/esm/minutesToSeconds/index.js generated vendored Normal file
View File

@@ -0,0 +1,24 @@
import requiredArgs from "../_lib/requiredArgs/index.js";
import { secondsInMinute } from "../constants/index.js";
/**
* @name minutesToSeconds
* @category Conversion Helpers
* @summary Convert minutes to seconds.
*
* @description
* Convert a number of minutes to a full number of seconds.
*
* @param { number } minutes - number of minutes to be converted
*
* @returns {number} the number of minutes converted in seconds
* @throws {TypeError} 1 argument required
*
* @example
* // Convert 2 minutes to seconds
* const result = minutesToSeconds(2)
* //=> 120
*/
export default function minutesToSeconds(minutes) {
requiredArgs(1, arguments);
return Math.floor(minutes * secondsInMinute);
}