Sha256: 95be42df6a26ad5a8f95736b78837c15b27efc48010c3167f92c728552f30a27
Contents?: true
Size: 328 Bytes
Versions: 66
Compression:
Stored size: 328 Bytes
Contents
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' : ''; }
Version data entries
66 entries across 65 versions & 13 rubygems