(date: Date)
| 259 | * Takes a `Date` object and converts it to the time zone identifier for the current user. |
| 260 | */ |
| 261 | export function fromDateToLocal(date: Date): ZonedDateTime { |
| 262 | return fromDate(date, getLocalTimeZone()); |
| 263 | } |
| 264 | |
| 265 | /** |
| 266 | * Converts a value with date components such as a `CalendarDateTime` or `ZonedDateTime` into a |
nothing calls this directly
no test coverage detected