aboutsummaryrefslogtreecommitdiffstats
path: root/node_modules/date-fns/locale/ms/_lib
diff options
context:
space:
mode:
authorPinapelz <yukais@pinapelz.com>2025-06-29 11:49:28 -0700
committerPinapelz <yukais@pinapelz.com>2025-06-29 11:49:28 -0700
commitd55b767039605256c736166a942a9138e3eacfd7 (patch)
tree947063b634c50d438a794325f13275e134aa5993 /node_modules/date-fns/locale/ms/_lib
parent864ce67d89c77d8ef9c3361f80d619853abcf91c (diff)
remove dev node_modules (oops)
Diffstat (limited to 'node_modules/date-fns/locale/ms/_lib')
-rw-r--r--node_modules/date-fns/locale/ms/_lib/formatDistance/index.js91
-rw-r--r--node_modules/date-fns/locale/ms/_lib/formatLong/index.js43
-rw-r--r--node_modules/date-fns/locale/ms/_lib/formatRelative/index.js20
-rw-r--r--node_modules/date-fns/locale/ms/_lib/localize/index.js135
-rw-r--r--node_modules/date-fns/locale/ms/_lib/match/index.js107
5 files changed, 0 insertions, 396 deletions
diff --git a/node_modules/date-fns/locale/ms/_lib/formatDistance/index.js b/node_modules/date-fns/locale/ms/_lib/formatDistance/index.js
deleted file mode 100644
index c788581..0000000
--- a/node_modules/date-fns/locale/ms/_lib/formatDistance/index.js
+++ /dev/null
@@ -1,91 +0,0 @@
-"use strict";
-
-Object.defineProperty(exports, "__esModule", {
- value: true
-});
-exports.default = void 0;
-var formatDistanceLocale = {
- lessThanXSeconds: {
- one: 'kurang dari 1 saat',
- other: 'kurang dari {{count}} saat'
- },
- xSeconds: {
- one: '1 saat',
- other: '{{count}} saat'
- },
- halfAMinute: 'setengah minit',
- lessThanXMinutes: {
- one: 'kurang dari 1 minit',
- other: 'kurang dari {{count}} minit'
- },
- xMinutes: {
- one: '1 minit',
- other: '{{count}} minit'
- },
- aboutXHours: {
- one: 'sekitar 1 jam',
- other: 'sekitar {{count}} jam'
- },
- xHours: {
- one: '1 jam',
- other: '{{count}} jam'
- },
- xDays: {
- one: '1 hari',
- other: '{{count}} hari'
- },
- aboutXWeeks: {
- one: 'sekitar 1 minggu',
- other: 'sekitar {{count}} minggu'
- },
- xWeeks: {
- one: '1 minggu',
- other: '{{count}} minggu'
- },
- aboutXMonths: {
- one: 'sekitar 1 bulan',
- other: 'sekitar {{count}} bulan'
- },
- xMonths: {
- one: '1 bulan',
- other: '{{count}} bulan'
- },
- aboutXYears: {
- one: 'sekitar 1 tahun',
- other: 'sekitar {{count}} tahun'
- },
- xYears: {
- one: '1 tahun',
- other: '{{count}} tahun'
- },
- overXYears: {
- one: 'lebih dari 1 tahun',
- other: 'lebih dari {{count}} tahun'
- },
- almostXYears: {
- one: 'hampir 1 tahun',
- other: 'hampir {{count}} tahun'
- }
-};
-var formatDistance = function formatDistance(token, count, options) {
- var result;
- var tokenValue = formatDistanceLocale[token];
- if (typeof tokenValue === 'string') {
- result = tokenValue;
- } else if (count === 1) {
- result = tokenValue.one;
- } else {
- result = tokenValue.other.replace('{{count}}', String(count));
- }
- if (options !== null && options !== void 0 && options.addSuffix) {
- if (options.comparison && options.comparison > 0) {
- return 'dalam masa ' + result;
- } else {
- return result + ' yang lalu';
- }
- }
- return result;
-};
-var _default = formatDistance;
-exports.default = _default;
-module.exports = exports.default; \ No newline at end of file
diff --git a/node_modules/date-fns/locale/ms/_lib/formatLong/index.js b/node_modules/date-fns/locale/ms/_lib/formatLong/index.js
deleted file mode 100644
index 6afa95c..0000000
--- a/node_modules/date-fns/locale/ms/_lib/formatLong/index.js
+++ /dev/null
@@ -1,43 +0,0 @@
-"use strict";
-
-var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
-Object.defineProperty(exports, "__esModule", {
- value: true
-});
-exports.default = void 0;
-var _index = _interopRequireDefault(require("../../../_lib/buildFormatLongFn/index.js"));
-var dateFormats = {
- full: 'EEEE, d MMMM yyyy',
- long: 'd MMMM yyyy',
- medium: 'd MMM yyyy',
- short: 'd/M/yyyy'
-};
-var timeFormats = {
- full: 'HH.mm.ss',
- long: 'HH.mm.ss',
- medium: 'HH.mm',
- short: 'HH.mm'
-};
-var dateTimeFormats = {
- full: "{{date}} 'pukul' {{time}}",
- long: "{{date}} 'pukul' {{time}}",
- medium: '{{date}}, {{time}}',
- short: '{{date}}, {{time}}'
-};
-var formatLong = {
- date: (0, _index.default)({
- formats: dateFormats,
- defaultWidth: 'full'
- }),
- time: (0, _index.default)({
- formats: timeFormats,
- defaultWidth: 'full'
- }),
- dateTime: (0, _index.default)({
- formats: dateTimeFormats,
- defaultWidth: 'full'
- })
-};
-var _default = formatLong;
-exports.default = _default;
-module.exports = exports.default; \ No newline at end of file
diff --git a/node_modules/date-fns/locale/ms/_lib/formatRelative/index.js b/node_modules/date-fns/locale/ms/_lib/formatRelative/index.js
deleted file mode 100644
index d51010c..0000000
--- a/node_modules/date-fns/locale/ms/_lib/formatRelative/index.js
+++ /dev/null
@@ -1,20 +0,0 @@
-"use strict";
-
-Object.defineProperty(exports, "__esModule", {
- value: true
-});
-exports.default = void 0;
-var formatRelativeLocale = {
- lastWeek: "eeee 'lepas pada jam' p",
- yesterday: "'Semalam pada jam' p",
- today: "'Hari ini pada jam' p",
- tomorrow: "'Esok pada jam' p",
- nextWeek: "eeee 'pada jam' p",
- other: 'P'
-};
-var formatRelative = function formatRelative(token, _date, _baseDate, _options) {
- return formatRelativeLocale[token];
-};
-var _default = formatRelative;
-exports.default = _default;
-module.exports = exports.default; \ No newline at end of file
diff --git a/node_modules/date-fns/locale/ms/_lib/localize/index.js b/node_modules/date-fns/locale/ms/_lib/localize/index.js
deleted file mode 100644
index 6aca555..0000000
--- a/node_modules/date-fns/locale/ms/_lib/localize/index.js
+++ /dev/null
@@ -1,135 +0,0 @@
-"use strict";
-
-var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
-Object.defineProperty(exports, "__esModule", {
- value: true
-});
-exports.default = void 0;
-var _index = _interopRequireDefault(require("../../../_lib/buildLocalizeFn/index.js"));
-// Most data for localization are taken from this page
-// https://www.unicode.org/cldr/charts/32/summary/ms.html
-var eraValues = {
- narrow: ['SM', 'M'],
- abbreviated: ['SM', 'M'],
- wide: ['Sebelum Masihi', 'Masihi']
-};
-var quarterValues = {
- narrow: ['1', '2', '3', '4'],
- abbreviated: ['S1', 'S2', 'S3', 'S4'],
- wide: ['Suku pertama', 'Suku kedua', 'Suku ketiga', 'Suku keempat']
-};
-
-// Note: in Malay, the names of days of the week and months are capitalized.
-// If you are making a new locale based on this one, check if the same is true for the language you're working on.
-// Generally, formatted dates should look like they are in the middle of a sentence,
-// e.g. in Spanish language the weekdays and months should be in the lowercase.
-var monthValues = {
- narrow: ['J', 'F', 'M', 'A', 'M', 'J', 'J', 'O', 'S', 'O', 'N', 'D'],
- abbreviated: ['Jan', 'Feb', 'Mac', 'Apr', 'Mei', 'Jun', 'Jul', 'Ogo', 'Sep', 'Okt', 'Nov', 'Dis'],
- wide: ['Januari', 'Februari', 'Mac', 'April', 'Mei', 'Jun', 'Julai', 'Ogos', 'September', 'Oktober', 'November', 'Disember']
-};
-var dayValues = {
- narrow: ['A', 'I', 'S', 'R', 'K', 'J', 'S'],
- short: ['Ahd', 'Isn', 'Sel', 'Rab', 'Kha', 'Jum', 'Sab'],
- abbreviated: ['Ahd', 'Isn', 'Sel', 'Rab', 'Kha', 'Jum', 'Sab'],
- wide: ['Ahad', 'Isnin', 'Selasa', 'Rabu', 'Khamis', 'Jumaat', 'Sabtu']
-};
-var dayPeriodValues = {
- narrow: {
- am: 'am',
- pm: 'pm',
- midnight: 'tgh malam',
- noon: 'tgh hari',
- morning: 'pagi',
- afternoon: 'tengah hari',
- evening: 'petang',
- night: 'malam'
- },
- abbreviated: {
- am: 'AM',
- pm: 'PM',
- midnight: 'tengah malam',
- noon: 'tengah hari',
- morning: 'pagi',
- afternoon: 'tengah hari',
- evening: 'petang',
- night: 'malam'
- },
- wide: {
- am: 'a.m.',
- pm: 'p.m.',
- midnight: 'tengah malam',
- noon: 'tengah hari',
- morning: 'pagi',
- afternoon: 'tengah hari',
- evening: 'petang',
- night: 'malam'
- }
-};
-var formattingDayPeriodValues = {
- narrow: {
- am: 'am',
- pm: 'pm',
- midnight: 'tengah malam',
- noon: 'tengah hari',
- morning: 'pagi',
- afternoon: 'tengah hari',
- evening: 'petang',
- night: 'malam'
- },
- abbreviated: {
- am: 'AM',
- pm: 'PM',
- midnight: 'tengah malam',
- noon: 'tengah hari',
- morning: 'pagi',
- afternoon: 'tengah hari',
- evening: 'petang',
- night: 'malam'
- },
- wide: {
- am: 'a.m.',
- pm: 'p.m.',
- midnight: 'tengah malam',
- noon: 'tengah hari',
- morning: 'pagi',
- afternoon: 'tengah hari',
- evening: 'petang',
- night: 'malam'
- }
-};
-var ordinalNumber = function ordinalNumber(dirtyNumber, _options) {
- // Can't use "pertama", "kedua" because can't be parsed
- return 'ke-' + Number(dirtyNumber);
-};
-var localize = {
- ordinalNumber: ordinalNumber,
- era: (0, _index.default)({
- values: eraValues,
- defaultWidth: 'wide'
- }),
- quarter: (0, _index.default)({
- values: quarterValues,
- defaultWidth: 'wide',
- argumentCallback: function argumentCallback(quarter) {
- return quarter - 1;
- }
- }),
- month: (0, _index.default)({
- values: monthValues,
- defaultWidth: 'wide'
- }),
- day: (0, _index.default)({
- values: dayValues,
- defaultWidth: 'wide'
- }),
- dayPeriod: (0, _index.default)({
- values: dayPeriodValues,
- defaultWidth: 'wide',
- formattingValues: formattingDayPeriodValues,
- defaultFormattingWidth: 'wide'
- })
-};
-var _default = localize;
-exports.default = _default;
-module.exports = exports.default; \ No newline at end of file
diff --git a/node_modules/date-fns/locale/ms/_lib/match/index.js b/node_modules/date-fns/locale/ms/_lib/match/index.js
deleted file mode 100644
index 1a4b6bb..0000000
--- a/node_modules/date-fns/locale/ms/_lib/match/index.js
+++ /dev/null
@@ -1,107 +0,0 @@
-"use strict";
-
-var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
-Object.defineProperty(exports, "__esModule", {
- value: true
-});
-exports.default = void 0;
-var _index = _interopRequireDefault(require("../../../_lib/buildMatchFn/index.js"));
-var _index2 = _interopRequireDefault(require("../../../_lib/buildMatchPatternFn/index.js"));
-var matchOrdinalNumberPattern = /^ke-(\d+)?/i;
-var parseOrdinalNumberPattern = /petama|\d+/i;
-var matchEraPatterns = {
- narrow: /^(sm|m)/i,
- abbreviated: /^(s\.?\s?m\.?|m\.?)/i,
- wide: /^(sebelum masihi|masihi)/i
-};
-var parseEraPatterns = {
- any: [/^s/i, /^(m)/i]
-};
-var matchQuarterPatterns = {
- narrow: /^[1234]/i,
- abbreviated: /^S[1234]/i,
- wide: /Suku (pertama|kedua|ketiga|keempat)/i
-};
-var parseQuarterPatterns = {
- any: [/pertama|1/i, /kedua|2/i, /ketiga|3/i, /keempat|4/i]
-};
-var matchMonthPatterns = {
- narrow: /^[jfmasond]/i,
- abbreviated: /^(jan|feb|mac|apr|mei|jun|jul|ogo|sep|okt|nov|dis)/i,
- wide: /^(januari|februari|mac|april|mei|jun|julai|ogos|september|oktober|november|disember)/i
-};
-var parseMonthPatterns = {
- narrow: [/^j/i, /^f/i, /^m/i, /^a/i, /^m/i, /^j/i, /^j/i, /^o/i, /^s/i, /^o/i, /^n/i, /^d/i],
- any: [/^ja/i, /^f/i, /^ma/i, /^ap/i, /^me/i, /^jun/i, /^jul/i, /^og/i, /^s/i, /^ok/i, /^n/i, /^d/i]
-};
-var matchDayPatterns = {
- narrow: /^[aisrkj]/i,
- short: /^(ahd|isn|sel|rab|kha|jum|sab)/i,
- abbreviated: /^(ahd|isn|sel|rab|kha|jum|sab)/i,
- wide: /^(ahad|isnin|selasa|rabu|khamis|jumaat|sabtu)/i
-};
-var parseDayPatterns = {
- narrow: [/^a/i, /^i/i, /^s/i, /^r/i, /^k/i, /^j/i, /^s/i],
- any: [/^a/i, /^i/i, /^se/i, /^r/i, /^k/i, /^j/i, /^sa/i]
-};
-var matchDayPeriodPatterns = {
- narrow: /^(am|pm|tengah malam|tengah hari|pagi|petang|malam)/i,
- any: /^([ap]\.?\s?m\.?|tengah malam|tengah hari|pagi|petang|malam)/i
-};
-var parseDayPeriodPatterns = {
- any: {
- am: /^a/i,
- pm: /^pm/i,
- midnight: /^tengah m/i,
- noon: /^tengah h/i,
- morning: /pa/i,
- afternoon: /tengah h/i,
- evening: /pe/i,
- night: /m/i
- }
-};
-var match = {
- ordinalNumber: (0, _index2.default)({
- matchPattern: matchOrdinalNumberPattern,
- parsePattern: parseOrdinalNumberPattern,
- valueCallback: function valueCallback(value) {
- return parseInt(value, 10);
- }
- }),
- era: (0, _index.default)({
- matchPatterns: matchEraPatterns,
- defaultMatchWidth: 'wide',
- parsePatterns: parseEraPatterns,
- defaultParseWidth: 'any'
- }),
- quarter: (0, _index.default)({
- matchPatterns: matchQuarterPatterns,
- defaultMatchWidth: 'wide',
- parsePatterns: parseQuarterPatterns,
- defaultParseWidth: 'any',
- valueCallback: function valueCallback(index) {
- return index + 1;
- }
- }),
- month: (0, _index.default)({
- matchPatterns: matchMonthPatterns,
- defaultMatchWidth: 'wide',
- parsePatterns: parseMonthPatterns,
- defaultParseWidth: 'any'
- }),
- day: (0, _index.default)({
- matchPatterns: matchDayPatterns,
- defaultMatchWidth: 'wide',
- parsePatterns: parseDayPatterns,
- defaultParseWidth: 'any'
- }),
- dayPeriod: (0, _index.default)({
- matchPatterns: matchDayPeriodPatterns,
- defaultMatchWidth: 'any',
- parsePatterns: parseDayPeriodPatterns,
- defaultParseWidth: 'any'
- })
-};
-var _default = match;
-exports.default = _default;
-module.exports = exports.default; \ No newline at end of file
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage