Skip to content

Instantly share code, notes, and snippets.

@ajcrites
Last active September 23, 2024 13:35
Show Gist options
  • Save ajcrites/908e59aae7282ee03b8807f5a32843ae to your computer and use it in GitHub Desktop.
Save ajcrites/908e59aae7282ee03b8807f5a32843ae to your computer and use it in GitHub Desktop.
interface ItemCalendar {
startDay: number
finishDay: number
itemsPerDay: number
}
function calcItemsUsedBetweenDaysTs({ startDay, finishDay, itemsPerDay }: ItemCalendar) {
return (finishDay - startDay) * itemsPerDay;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment