@oyearun/format-dates.js
Version:
---
40 lines • 760 B
text/typescript
export const months: {month_no: number; name: string}[] = [
{
month_no : 1,
name: "January"
},
{
month_no : 2,
name: "February"
},{
month_no : 3,
name: "March"
},{
month_no : 4,
name: "April"
},{
month_no : 5,
name: "May"
},{
month_no : 6,
name: "June"
},{
month_no : 7,
name: "July"
},{
month_no : 8,
name: "August"
},{
month_no : 9,
name: "September"
},{
month_no : 10,
name: "October"
},{
month_no : 11,
name: "November"
},{
month_no : 12,
name: "December"
},
]