I have two luxon objects,
let startDate = DateTime.fromISO(startDate)
let someDate = DateTime.fromISO(someDate)
How can I compare if someDate is <= startDate, only the dates, without the time?
To compare just the dates, use startOf
startDate.startOf("day") <= someDate.startOf("day")