luxon parse date code example
Example 1: luxon timestamp
const dt = DateTime.local();
dt.toMillis()
// or
dt.valueOf();
Example 2: luxon compare dates
d1 < d2 // is d1 before d2?
const dt = DateTime.local();
dt.toMillis()
// or
dt.valueOf();
d1 < d2 // is d1 before d2?