UNPKG

@equinor/mad-core

Version:

Core library for the Mobile App Delivery team

12 lines (10 loc) 286 B
// src/utils/dateUtils.ts function getShortDate(date) { const day = date.toLocaleString(void 0, { day: "2-digit" }); const month = date.toLocaleString(void 0, { month: "short" }); const year = date.getFullYear(); return `${month} ${day}, ${year}`; } export { getShortDate };