twenty / packages /twenty-shared /src /utils /date /turnPlainDateIntoUserTimeZoneInstantString.ts
Jules
Initial clean CRM deployment with prebuilt assets
d9494a5
Raw
History Blame Contribute Delete
252 Bytes
import { type Temporal } from 'temporal-polyfill';
export const turnPlainDateIntoUserTimeZoneInstantString = (
plainDate: Temporal.PlainDate,
userTimeZone: string,
) => {
return plainDate.toZonedDateTime(userTimeZone).toInstant().toString();
};