Sha256: 49bf5d0d3ae4a0629edbbe9561af7dff47564ac6714e2a99cbd1ea6b4b827365
Contents?: true
Size: 325 Bytes
Versions: 19
Compression:
Stored size: 325 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
19 entries across 19 versions & 1 rubygems