date-fns-tz
Version:
Time zone support for date-fns v2 with the browser Intl API
50 lines (42 loc) • 2.09 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = zonedTimeToUtc;
var _cloneObject = _interopRequireDefault(require("date-fns/_lib/cloneObject"));
var _format = _interopRequireDefault(require("date-fns/format"));
var _toDate = _interopRequireDefault(require("../toDate"));
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
/**
* @name zonedTimeToUtc
* @category Time Zone Helpers
* @summary Get the UTC date/time from a date representing local time in a given time zone
*
* @description
* Returns a date instance with the UTC time of the provided date of which the values
* represented the local time in the time zone specified. In other words, if the input
* date represented local time in time time zone, the timestamp of the output date will
* give the equivalent UTC of that local time regardless of the current system time zone.
*
* @param {Date|String|Number} date - the date with values representing the local time
* @param {String} timeZone - the time zone of this local time, 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 in Los Angeles is 5pm UTC
* const result = zonedTimeToUtc(new Date(2014, 5, 25, 10, 0, 0), 'America/Los_Angeles')
* //=> 2014-06-25T17:00:00.000Z
*/
function zonedTimeToUtc(date, timeZone, options) {
if (date instanceof Date) {
date = (0, _format.default)(date, "yyyy-MM-dd'T'HH:mm:ss.SSS");
}
var extendedOptions = (0, _cloneObject.default)(options);
extendedOptions.timeZone = timeZone;
return (0, _toDate.default)(date, extendedOptions);
}
module.exports = exports.default;