mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-04 02:09:22 +02:00
Show a report for total users chart
This commit is contained in:
parent
794938db72
commit
4d064adf1b
5397 changed files with 313100 additions and 365 deletions
33
node_modules/date-fns/parse/_lib/constants.cjs
generated
vendored
Normal file
33
node_modules/date-fns/parse/_lib/constants.cjs
generated
vendored
Normal file
|
@ -0,0 +1,33 @@
|
|||
"use strict";
|
||||
exports.timezonePatterns = exports.numericPatterns = void 0;
|
||||
const numericPatterns = (exports.numericPatterns = {
|
||||
month: /^(1[0-2]|0?\d)/, // 0 to 12
|
||||
date: /^(3[0-1]|[0-2]?\d)/, // 0 to 31
|
||||
dayOfYear: /^(36[0-6]|3[0-5]\d|[0-2]?\d?\d)/, // 0 to 366
|
||||
week: /^(5[0-3]|[0-4]?\d)/, // 0 to 53
|
||||
hour23h: /^(2[0-3]|[0-1]?\d)/, // 0 to 23
|
||||
hour24h: /^(2[0-4]|[0-1]?\d)/, // 0 to 24
|
||||
hour11h: /^(1[0-1]|0?\d)/, // 0 to 11
|
||||
hour12h: /^(1[0-2]|0?\d)/, // 0 to 12
|
||||
minute: /^[0-5]?\d/, // 0 to 59
|
||||
second: /^[0-5]?\d/, // 0 to 59
|
||||
|
||||
singleDigit: /^\d/, // 0 to 9
|
||||
twoDigits: /^\d{1,2}/, // 0 to 99
|
||||
threeDigits: /^\d{1,3}/, // 0 to 999
|
||||
fourDigits: /^\d{1,4}/, // 0 to 9999
|
||||
|
||||
anyDigitsSigned: /^-?\d+/,
|
||||
singleDigitSigned: /^-?\d/, // 0 to 9, -0 to -9
|
||||
twoDigitsSigned: /^-?\d{1,2}/, // 0 to 99, -0 to -99
|
||||
threeDigitsSigned: /^-?\d{1,3}/, // 0 to 999, -0 to -999
|
||||
fourDigitsSigned: /^-?\d{1,4}/, // 0 to 9999, -0 to -9999
|
||||
});
|
||||
|
||||
const timezonePatterns = (exports.timezonePatterns = {
|
||||
basicOptionalMinutes: /^([+-])(\d{2})(\d{2})?|Z/,
|
||||
basic: /^([+-])(\d{2})(\d{2})|Z/,
|
||||
basicOptionalSeconds: /^([+-])(\d{2})(\d{2})((\d{2}))?|Z/,
|
||||
extended: /^([+-])(\d{2}):(\d{2})|Z/,
|
||||
extendedOptionalSeconds: /^([+-])(\d{2}):(\d{2})(:(\d{2}))?|Z/,
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue