This commit is contained in:
2025-11-11 00:04:55 -06:00
parent a76ad41fde
commit 40538eddfd
6405 changed files with 1289756 additions and 0 deletions

54
node_modules/date-and-time/locale/id.js generated vendored Normal file
View File

@ -0,0 +1,54 @@
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, (global.date = global.date || {}, global.date.locale = global.date.locale || {}, global.date.locale.id = factory()));
})(this, (function () { 'use strict';
/**
* @preserve date-and-time.js locale configuration
* @preserve Indonesian (id)
* @preserve It is using moment.js locale configuration as a reference.
*/
var id = function (date) {
var code = 'id';
date.locale(code, {
res: {
MMMM: ['Januari', 'Februari', 'Maret', 'April', 'Mei', 'Juni', 'Juli', 'Agustus', 'September', 'Oktober', 'November', 'Desember'],
MMM: ['Jan', 'Feb', 'Mar', 'Apr', 'Mei', 'Jun', 'Jul', 'Ags', 'Sep', 'Okt', 'Nov', 'Des'],
dddd: ['Minggu', 'Senin', 'Selasa', 'Rabu', 'Kamis', 'Jumat', 'Sabtu'],
ddd: ['Min', 'Sen', 'Sel', 'Rab', 'Kam', 'Jum', 'Sab'],
dd: ['Mg', 'Sn', 'Sl', 'Rb', 'Km', 'Jm', 'Sb'],
A: ['pagi', 'siang', 'sore', 'malam']
},
formatter: {
A: function (d) {
var h = d.getHours();
if (h < 11) {
return this.res.A[0]; // pagi
} else if (h < 15) {
return this.res.A[1]; // siang
} else if (h < 19) {
return this.res.A[2]; // sore
}
return this.res.A[3]; // malam
}
},
parser: {
h12: function (h, a) {
if (a < 1) {
return h; // pagi
} else if (a < 2) {
return h >= 11 ? h : h + 12; // siang
}
return h + 12; // sore, malam
}
}
});
return code;
};
return id;
}));