From 38acabfa6089ab8ac469c12b5f55022fb96935e5 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Mon, 23 Aug 2021 16:46:06 -0300 Subject: added web vendors --- date-fns/src/locale/en-GB/index.js | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 date-fns/src/locale/en-GB/index.js (limited to 'date-fns/src/locale/en-GB/index.js') diff --git a/date-fns/src/locale/en-GB/index.js b/date-fns/src/locale/en-GB/index.js new file mode 100644 index 0000000..1ab0ea0 --- /dev/null +++ b/date-fns/src/locale/en-GB/index.js @@ -0,0 +1,28 @@ +import formatDistance from '../en-US/_lib/formatDistance/index' +import formatLong from './_lib/formatLong/index' +import formatRelative from '../en-US/_lib/formatRelative/index' +import localize from '../en-US/_lib/localize/index' +import match from '../en-US/_lib/match/index' + +/** + * @type {Locale} + * @category Locales + * @summary English locale (United Kingdom). + * @language English + * @iso-639-2 eng + * @author Alex [@glintik]{@link https://github.com/glintik} + */ +var locale = { + code: 'en-GB', + formatDistance: formatDistance, + formatLong: formatLong, + formatRelative: formatRelative, + localize: localize, + match: match, + options: { + weekStartsOn: 1 /* Monday */, + firstWeekContainsDate: 4 + } +} + +export default locale -- cgit v1.2.3