UNPKG

date-fns-tz

Version:

Time zone support for date-fns v2 with the browser Intl API

56 lines (45 loc) 2.45 kB
'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = utcToZonedTime; var _tzParseTimezone = require('../_lib/tzParseTimezone'); var _tzParseTimezone2 = _interopRequireDefault(_tzParseTimezone); var _subMilliseconds = require('date-fns/subMilliseconds'); var _subMilliseconds2 = _interopRequireDefault(_subMilliseconds); var _toDate = require('../toDate'); var _toDate2 = _interopRequireDefault(_toDate); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } /** * @name utcToZonedTime * @category Time Zone Helpers * @summary Get a date/time representing local time in a given time zone from the UTC date * * @description * Returns a date instance with values representing the local time in the time zone * specified of the UTC time from the date provided. In other words, when the new date * is formatted it will show the equivalent hours in the target time zone regardless * of the current system time zone. * * @param {Date|String|Number} date - the date with the relevant UTC time * @param {String} timeZone - the time zone to get local time for, can be an offset or IANA time zone * @param {OptionsWithTZ} [options] - the object with options. See [Options]{@link https://date-fns.org/docs/Options} * @param {0|1|2} [options.additionalDigits=2] - passed to `toDate`. See [toDate]{@link https://date-fns.org/docs/toDate} * @returns {Date} the new date with the equivalent time in the time zone * @throws {TypeError} 2 arguments required * @throws {RangeError} `options.additionalDigits` must be 0, 1 or 2 * * @example * // In June 10am UTC is 6am in New York (-04:00) * const result = utcToZonedTime('2014-06-25T10:00:00.000Z', 'America/New_York') * //=> Jun 25 2014 06:00:00 */ function utcToZonedTime(dirtyDate, timeZone, options) { var date = (0, _toDate2.default)(dirtyDate, options); // This date has the UTC time values of the input date at the system time zone var utcDate = new Date(date.getUTCFullYear(), date.getUTCMonth(), date.getUTCDate(), date.getUTCHours(), date.getUTCMinutes(), date.getUTCSeconds()); // We just need to apply the offset indicated by the time zone to this localized date var offsetMilliseconds = (0, _tzParseTimezone2.default)(timeZone, date); return offsetMilliseconds ? (0, _subMilliseconds2.default)(utcDate, offsetMilliseconds) : utcDate; } module.exports = exports['default'];