aboutsummaryrefslogtreecommitdiff
path: root/src/util.ts
blob: f7f901850a1308afd068ce2d8b222d8162a95da0 (plain) (blame)
1
2
3
4
5
6
7
8
// Format date to a string
function formatDate(date: Date): string {
    const options: Intl.DateTimeFormatOptions = { year: 'numeric', month: 'long', day: 'numeric' };

    return new Date(date).toLocaleDateString(undefined, options);
}

export { formatDate }