const formatearFecha = require("./index.js");
console.log(formatearFecha(new Date(), "YYYY-MM-DD"));
console.log(formatearFecha("2024-08-31", "DD/MM/YYYY"));
console.log(formatearFecha(new Date(), "MMMM DD, YYYY"));
console.log(formatearFecha(new Date(), "DD de MMMM de YYYY"));