UNPKG

@estarlincito/utils

Version:

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

7 lines (6 loc) 125 B
const n = (t, e) => t.sort( (a, o) => new Date(o[e]).valueOf() - new Date(a[e]).valueOf() ); export { n as sortByDate };