UNPKG

date-and-time

Version:

The simplest, most intuitive date and time library

2 lines (1 loc) 755 B
"use strict";const e={MMMM:["gennaio","febbraio","marzo","aprile","maggio","giugno","luglio","agosto","settembre","ottobre","novembre","dicembre"],MMM:["gen","feb","mar","apr","mag","giu","lug","ago","set","ott","nov","dic"],dddd:["domenica","lunedì","martedì","mercoledì","giovedì","venerdì","sabato"],ddd:["dom","lun","mar","mer","gio","ven","sab"],dd:["Do","Lu","Ma","Me","Gi","Ve","Sa"],A:["AM","PM"],AA:["A.M.","P.M."],a:["am","pm"],aa:["a.m.","p.m."]};var a=new class{getLocale(){return"it"}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}};module.exports=a;