export function isDateMoreRecentThan( date: Readonly, comparedDate: Readonly ): boolean { return date > comparedDate; }