It appears you have a well-structured Git repository with various files, including SVG icons and HTML documents. Here's a brief overview:
This commit is contained in:
4
backend/node_modules/date-fns/formatRFC3339/index.d.ts
generated
vendored
Normal file
4
backend/node_modules/date-fns/formatRFC3339/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
// This file is generated automatically by `scripts/build/typings.js`. Please, don't change it.
|
||||
|
||||
import { formatRFC3339 } from 'date-fns'
|
||||
export default formatRFC3339
|
84
backend/node_modules/date-fns/formatRFC3339/index.js
generated
vendored
Normal file
84
backend/node_modules/date-fns/formatRFC3339/index.js
generated
vendored
Normal file
@@ -0,0 +1,84 @@
|
||||
"use strict";
|
||||
|
||||
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = formatRFC3339;
|
||||
var _index = _interopRequireDefault(require("../toDate/index.js"));
|
||||
var _index2 = _interopRequireDefault(require("../isValid/index.js"));
|
||||
var _index3 = _interopRequireDefault(require("../_lib/addLeadingZeros/index.js"));
|
||||
var _index4 = _interopRequireDefault(require("../_lib/toInteger/index.js"));
|
||||
/**
|
||||
* @name formatRFC3339
|
||||
* @category Common Helpers
|
||||
* @summary Format the date according to the RFC 3339 standard (https://tools.ietf.org/html/rfc3339#section-5.6).
|
||||
*
|
||||
* @description
|
||||
* Return the formatted date string in RFC 3339 format. Options may be passed to control the parts and notations of the date.
|
||||
*
|
||||
* @param {Date|Number} date - the original date
|
||||
* @param {Object} [options] - an object with options.
|
||||
* @param {0|1|2|3} [options.fractionDigits=0] - number of digits after the decimal point after seconds
|
||||
* @returns {String} the formatted date string
|
||||
* @throws {TypeError} 1 argument required
|
||||
* @throws {RangeError} `date` must not be Invalid Date
|
||||
* @throws {RangeError} `options.fractionDigits` must be between 0 and 3
|
||||
*
|
||||
* @example
|
||||
* // Represent 18 September 2019 in RFC 3339 format:
|
||||
* const result = formatRFC3339(new Date(2019, 8, 18, 19, 0, 52))
|
||||
* //=> '2019-09-18T19:00:52Z'
|
||||
*
|
||||
* @example
|
||||
* // Represent 18 September 2019 in RFC 3339 format, 2 digits of second fraction:
|
||||
* const result = formatRFC3339(new Date(2019, 8, 18, 19, 0, 52, 234), { fractionDigits: 2 })
|
||||
* //=> '2019-09-18T19:00:52.23Z'
|
||||
*
|
||||
* @example
|
||||
* // Represent 18 September 2019 in RFC 3339 format, 3 digits of second fraction
|
||||
* const result = formatRFC3339(new Date(2019, 8, 18, 19, 0, 52, 234), { fractionDigits: 3 })
|
||||
* //=> '2019-09-18T19:00:52.234Z'
|
||||
*/
|
||||
function formatRFC3339(dirtyDate, options) {
|
||||
var _options$fractionDigi;
|
||||
if (arguments.length < 1) {
|
||||
throw new TypeError("1 arguments required, but only ".concat(arguments.length, " present"));
|
||||
}
|
||||
var originalDate = (0, _index.default)(dirtyDate);
|
||||
if (!(0, _index2.default)(originalDate)) {
|
||||
throw new RangeError('Invalid time value');
|
||||
}
|
||||
var fractionDigits = Number((_options$fractionDigi = options === null || options === void 0 ? void 0 : options.fractionDigits) !== null && _options$fractionDigi !== void 0 ? _options$fractionDigi : 0);
|
||||
|
||||
// Test if fractionDigits is between 0 and 3 _and_ is not NaN
|
||||
if (!(fractionDigits >= 0 && fractionDigits <= 3)) {
|
||||
throw new RangeError('fractionDigits must be between 0 and 3 inclusively');
|
||||
}
|
||||
var day = (0, _index3.default)(originalDate.getDate(), 2);
|
||||
var month = (0, _index3.default)(originalDate.getMonth() + 1, 2);
|
||||
var year = originalDate.getFullYear();
|
||||
var hour = (0, _index3.default)(originalDate.getHours(), 2);
|
||||
var minute = (0, _index3.default)(originalDate.getMinutes(), 2);
|
||||
var second = (0, _index3.default)(originalDate.getSeconds(), 2);
|
||||
var fractionalSecond = '';
|
||||
if (fractionDigits > 0) {
|
||||
var milliseconds = originalDate.getMilliseconds();
|
||||
var fractionalSeconds = Math.floor(milliseconds * Math.pow(10, fractionDigits - 3));
|
||||
fractionalSecond = '.' + (0, _index3.default)(fractionalSeconds, fractionDigits);
|
||||
}
|
||||
var offset = '';
|
||||
var tzOffset = originalDate.getTimezoneOffset();
|
||||
if (tzOffset !== 0) {
|
||||
var absoluteOffset = Math.abs(tzOffset);
|
||||
var hourOffset = (0, _index3.default)((0, _index4.default)(absoluteOffset / 60), 2);
|
||||
var minuteOffset = (0, _index3.default)(absoluteOffset % 60, 2);
|
||||
// If less than 0, the sign is +, because it is ahead of time.
|
||||
var sign = tzOffset < 0 ? '+' : '-';
|
||||
offset = "".concat(sign).concat(hourOffset, ":").concat(minuteOffset);
|
||||
} else {
|
||||
offset = 'Z';
|
||||
}
|
||||
return "".concat(year, "-").concat(month, "-").concat(day, "T").concat(hour, ":").concat(minute, ":").concat(second).concat(fractionalSecond).concat(offset);
|
||||
}
|
||||
module.exports = exports.default;
|
57
backend/node_modules/date-fns/formatRFC3339/index.js.flow
generated
vendored
Normal file
57
backend/node_modules/date-fns/formatRFC3339/index.js.flow
generated
vendored
Normal file
@@ -0,0 +1,57 @@
|
||||
// @flow
|
||||
// This file is generated automatically by `scripts/build/typings.js`. Please, don't change it.
|
||||
|
||||
export type Interval = {
|
||||
start: Date | number,
|
||||
end: Date | number,
|
||||
}
|
||||
|
||||
export type Locale = {
|
||||
code?: string,
|
||||
formatDistance?: (...args: Array<any>) => any,
|
||||
formatRelative?: (...args: Array<any>) => any,
|
||||
localize?: {
|
||||
ordinalNumber: (...args: Array<any>) => any,
|
||||
era: (...args: Array<any>) => any,
|
||||
quarter: (...args: Array<any>) => any,
|
||||
month: (...args: Array<any>) => any,
|
||||
day: (...args: Array<any>) => any,
|
||||
dayPeriod: (...args: Array<any>) => any,
|
||||
},
|
||||
formatLong?: {
|
||||
date: (...args: Array<any>) => any,
|
||||
time: (...args: Array<any>) => any,
|
||||
dateTime: (...args: Array<any>) => any,
|
||||
},
|
||||
match?: {
|
||||
ordinalNumber: (...args: Array<any>) => any,
|
||||
era: (...args: Array<any>) => any,
|
||||
quarter: (...args: Array<any>) => any,
|
||||
month: (...args: Array<any>) => any,
|
||||
day: (...args: Array<any>) => any,
|
||||
dayPeriod: (...args: Array<any>) => any,
|
||||
},
|
||||
options?: {
|
||||
weekStartsOn?: 0 | 1 | 2 | 3 | 4 | 5 | 6,
|
||||
firstWeekContainsDate?: 1 | 2 | 3 | 4 | 5 | 6 | 7,
|
||||
},
|
||||
}
|
||||
|
||||
export type Duration = {
|
||||
years?: number,
|
||||
months?: number,
|
||||
weeks?: number,
|
||||
days?: number,
|
||||
hours?: number,
|
||||
minutes?: number,
|
||||
seconds?: number,
|
||||
}
|
||||
|
||||
export type Day = 0 | 1 | 2 | 3 | 4 | 5 | 6
|
||||
|
||||
declare module.exports: (
|
||||
date: Date | number,
|
||||
options?: {
|
||||
fractionDigits?: 0 | 1 | 2 | 3,
|
||||
}
|
||||
) => string
|
5
backend/node_modules/date-fns/formatRFC3339/package.json
generated
vendored
Normal file
5
backend/node_modules/date-fns/formatRFC3339/package.json
generated
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"sideEffects": false,
|
||||
"module": "../esm/formatRFC3339/index.js",
|
||||
"typings": "../typings.d.ts"
|
||||
}
|
Reference in New Issue
Block a user