This commit is contained in:
2025-10-21 08:10:15 +00:00
commit 8eaf13f445
1983 changed files with 292430 additions and 0 deletions

5
node_modules/moment/src/lib/create/utc.js generated vendored Normal file
View File

@@ -0,0 +1,5 @@
import { createLocalOrUTC } from './from-anything';
export function createUTC(input, format, locale, strict) {
return createLocalOrUTC(input, format, locale, strict, true).utc();
}