Latest repo

This commit is contained in:
Marc
2025-06-02 16:42:16 +00:00
parent 53ddf1a329
commit cde5fae175
27907 changed files with 3875388 additions and 1 deletions

24
node_modules/moment/src/lib/units/minute.js generated vendored Normal file
View File

@@ -0,0 +1,24 @@
import { makeGetSet } from '../moment/get-set';
import { addFormatToken } from '../format/format';
import {
addRegexToken,
match1to2,
match2,
match1to2HasZero,
} from '../parse/regex';
import { addParseToken } from '../parse/token';
import { MINUTE } from './constants';
// FORMATTING
addFormatToken('m', ['mm', 2], 0, 'minute');
// PARSING
addRegexToken('m', match1to2, match1to2HasZero);
addRegexToken('mm', match1to2, match2);
addParseToken(['m', 'mm'], MINUTE);
// MOMENTS
export var getSetMinute = makeGetSet('Minutes', false);