Skip to content

Instantly share code, notes, and snippets.

@MauricioRobayo
Created July 17, 2022 15:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MauricioRobayo/ef83be4b33ef21cbf8427adff9cfb058 to your computer and use it in GitHub Desktop.
Save MauricioRobayo/ef83be4b33ef21cbf8427adff9cfb058 to your computer and use it in GitHub Desktop.
Execute while condition at end of loop
export function isNextMondayHoliday(date: Date): boolean {
const currentDate = new Date(date);
do {
currentDate.setUTCDate(currentDate.getUTCDate() + 1);
} while (currentDate.getUTCDay() !== DayOfWeek.MONDAY);
return isHoliday(currentDate);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment