UNPKG

@estarlincito/utils

Version:

A collection of utility functions designed to simplify and speed up development tasks in JavaScript and TypeScript projects.

12 lines (11 loc) 191 B
const n = (t) => { const e = new Date(t), o = { day: "2-digit", month: "short", year: "numeric" }; return e.toLocaleDateString("en-US", o); }; export { n as dateFormat };