timezoneDataHelper.js 266 B

1234567891011
  1. (function () {
  2. 'use strict';
  3. $.ajax('node_modules/moment-timezone/data/packed/latest.json', {
  4. success: function (data) {
  5. moment.tz.load(data);
  6. },
  7. method: 'GET',
  8. dataType: 'json',
  9. async: false
  10. });
  11. }());