1.0.0:first commit

This commit is contained in:
2026-03-26 01:23:19 +08:00
commit f8d5b11567
23562 changed files with 2853775 additions and 0 deletions

24
node_modules/date-fns/esm/secondsToMilliseconds/index.js generated vendored Executable file
View File

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