1 import { convertTimestampToTimezone } from '../../date/timezone';
2 import { toExdate } from '../exdate';
4 const getRecurrenceIdValueFromTimestamp = (unixTimestamp: number, isAllDay: boolean, startTimezone: string) => {
5 const localStartDateTime = convertTimestampToTimezone(unixTimestamp, startTimezone);
6 return toExdate(localStartDateTime, isAllDay, startTimezone);
9 export default getRecurrenceIdValueFromTimestamp;