MCPcopy Create free account
hub / github.com/Dispatcharr/Dispatcharr / isAfter

Function isAfter

frontend/src/utils/dateTimeUtils.js:35–35  ·  view source on GitHub ↗
(date1, date2)

Source from the content-addressed store, hash-verified

33export const isBefore = (date1, date2) => dayjs(date1).isBefore(date2);
34
35export const isAfter = (date1, date2) => dayjs(date1).isAfter(date2);
36
37export const isSame = (date1, date2, unit = 'day') =>
38 dayjs(date1).isSame(date2, unit);

Callers 8

handleOnWatchLiveFunction · 0.90
MovieFunction · 0.90
RecordingCardFunction · 0.90
calculateEndFunction · 0.90
calculateNowPositionFunction · 0.90
getUpcomingOccurrencesFunction · 0.90
handleOnWatchLiveFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected