date-and-time
Version:
The simplest, most intuitive date and time library
2 lines (1 loc) • 738 B
JavaScript
const e={MMMM:["enero","febrero","marzo","abril","mayo","junio","julio","agosto","septiembre","octubre","noviembre","diciembre"],MMM:["ene","feb","mar","abr","may","jun","jul","ago","sept","oct","nov","dic"],dddd:["domingo","lunes","martes","miércoles","jueves","viernes","sábado"],ddd:["dom","lun","mar","mié","jue","vie","sáb"],dd:["do","lu","ma","mi","ju","vi","sá"],A:["AM","PM"],AA:["A.M.","P.M."],a:["am","pm"],aa:["a.m.","p.m."]};var a=new class{getLocale(){return"es"}getMonthList(a){return"long"===a.style?e.MMMM:e.MMM}getDayOfWeekList(a){return"long"===a.style?e.dddd:"short"===a.style?e.ddd:e.dd}getMeridiemList(a){return"long"===a.style?"lowercase"===a.case?e.aa:e.AA:"lowercase"===a.case?e.a:e.A}};export{a as default};