UNPKG

@atlaskit/profilecard

Version:

A React component to display a card with user information.

17 lines (16 loc) 390 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.localTime = void 0; var _dateFnsTz = require("date-fns-tz"); var localTime = exports.localTime = function localTime(timezone, format) { if (!timezone) { return null; } try { return (0, _dateFnsTz.formatInTimeZone)(new Date(), timezone, format); } catch (error) { return null; } };