I have a date string const someDate = 2023-02-13T09:00:00.000-05:00
The problem is when I'm formatting it via DayJS.
dayjs(someDate).format('h:mm A')
It returns me string according to my local time zone, when I need to keep like I received.
Any way to disable converting time to local timezone in DayJS?