Sha256: ad2363196422aea8f05aad4823cbb2061a1ad8b42360bf753d145a271a3b9ec8
Contents?: true
Size: 846 Bytes
Versions: 15
Compression:
Stored size: 846 Bytes
Contents
/*global define*/ define(function() { "use strict"; /** * Provides the type of time standards which JulianDate can take as input. * * @exports TimeStandard * * @see JulianDate */ var TimeStandard = { /** * Represents the coordinated Universal Time (UTC) time standard. * * UTC is related to TAI according to the relationship * <code>UTC = TAI - deltaT</code> where <code>deltaT</code> is the number of leap * seconds which have been introduced as of the time in TAI. * */ UTC : 0, /** * Represents the International Atomic Time (TAI) time standard. * TAI is the principal time standard to which the other time standards are related. */ TAI : 1 }; return TimeStandard; });
Version data entries
15 entries across 15 versions & 1 rubygems