UNPKG

vremel

Version:

JavaScript date utility library for Temporal API

21 lines (20 loc) 324 B
export function getMonthNumberFromAbbreviation(monthName: string): number { const index = [ "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec", ].indexOf(monthName); if (index === -1) { throw new Error(`Unknown month name: ${monthName}`); } return index + 1; }