JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "timezone.js"
Full Path: /var/www/html/ctctaxi/public/assets/vendor_components/moment/src/lib/units/timezone.js
File size: 328 bytes
MIME-type: text/x-java
Charset: utf-8
import { addFormatToken } from '../format/format';
// FORMATTING
addFormatToken('z', 0, 0, 'zoneAbbr');
addFormatToken('zz', 0, 0, 'zoneName');
// MOMENTS
export function getZoneAbbr () {
return this._isUTC ? 'UTC' : '';
}
export function getZoneName () {
return this._isUTC ? 'Coordinated Universal Time' : '';
}