How can i migrate this line into luxon from moment, the code sample is given below,
This code sample is in moment, and i want to do it in luxon.
timezone: null,
getIn: moment().hour(14).minute(0)
.second(0)
.millisecond(0),
getOut: moment().add(2, 'days').hour(11).minute(0)
.second(0)
.millisecond(0),
getIn:
moment(luxon.DateTime.fromISO(moment(getIn).toISOString(), { zone: home.timezone }).toJSDate()),
getOut:
moment(luxon.DateTime.fromISO(moment(getOut).toISOString(), { zone: home.timezone }).toJSDate()),