xxxxxxxxxx
zoneName = zoneName || (gathering.ZoneObj ? gathering.ZoneObj.value : null);
var startZone = moment.tz(gathering.Start.format($scope.MomentDateFormat), zoneName);
var startZoneFormat = startZone.clone().tz($scope.LocalZone);
gathering.LocalStart = startZoneFormat.format($scope.LocalTimeFormat);
xxxxxxxxxx
// MOMENT.JS IS NO LONGER MAINTAINED - SWITCH TO DAY.JS, LUXON, ETC.
const time = moment.tz("2021-04-14T02:08:10.370Z")
const localtz = moment.tz.guess()
const date = time.clone().tz(localtz)
const formatDate = moment(date).format('MMMM Do YYYY, h:mm:ss A z')