UNPKG

@cloakui/utils

Version:

Shared utilities for all CloakUI component packages.

13 lines (12 loc) 398 B
/** * A little helper to prettify date strings for human readability */ export function formatDate(props) { const { dateTime, locales = null, options = null, } = typeof props == "string" ? { dateTime: props } : props; return new Date(dateTime).toLocaleDateString(locales ?? "en-us", { year: "numeric", month: "short", day: "numeric", ...options, }); }