dt-i18n
Version:
A lightweight, modular JavaScript/TypeScript date and time utility with built-in internationalization (i18n) support for many languages.
9 lines (8 loc) • 331 B
JavaScript
const e = {
numbers: ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"],
months: ["enero", "febrero", "marzo", "abril", "mayo", "junio", "julio", "agosto", "septiembre", "octubre", "noviembre", "diciembre"],
weekdays: ["domingo", "lunes", "martes", "miércoles", "jueves", "viernes", "sábado"]
};
export {
e as default
};