UNPKG

@atlaskit/profilecard

Version:

A React component to display a card with user information.

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