twenty / packages /twenty-shared /src /utils /date /isPlainDateInWeekend.ts
Jules
Initial clean CRM deployment with prebuilt assets
d9494a5
Raw
History Blame Contribute Delete
162 Bytes
import { type Temporal } from 'temporal-polyfill';
export const isPlainDateInWeekend = (plainDate: Temporal.PlainDate) => {
return plainDate.dayOfWeek > 5;
};