JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr{ gilour

File "end-of-day.ts"

Full Path: /home/markqprx/iniasli.pro/client/utils/date/end-of-day.ts
File size: 232 bytes
MIME-type: text/plain
Charset: utf-8

import {ZonedDateTime} from '@internationalized/date';

export function endOfDay(date: ZonedDateTime): ZonedDateTime {
  return date.set({
    hour: 24 - 1,
    minute: 60 - 1,
    second: 60 - 1,
    millisecond: 1000 - 1,
  });
}