export function getShortenedTimeAndDate()

in client/src/util/Helpers.ts [10:12]


export function getShortenedTimeAndDate(date: Date) {
    return dateAndTime.format(date, "h:mm A MM/DD/YYYY").replace("p.m.", "pm").replace("a.m.", "am");
}