UNPKG

@atlaskit/profilecard

Version:

A React component to display a card with user information.

11 lines 247 B
import { formatInTimeZone } from 'date-fns-tz'; export const localTime = (timezone, format) => { if (!timezone) { return null; } try { return formatInTimeZone(new Date(), timezone, format); } catch (error) { return null; } };