MIT-style license.
Takashi Mizohata beatak@nydd.org
2008 [nydd](http://code.nydd.org/).
[nydd jslib](http://code.nydd.org/).
Everything is worthwhile / if the soul isn’t small.
| Date | MIT-style license. |
| Constants | |
| MonthNameEN | (Array) Name in English for each month |
| Functions | |
| getMonthName | Utility methods that connects an instance of Date Object and an Array of Name of month in any language. |
| getShortMonthName | Shortcut for getMonthName with requiring length as 3. |
| getUTCMonthName | Shortcut for getMonthName with requiring UTC time. |
| getUTCShortMonthName | Shortcut for getMonthName with requiring length as 3 and UTC time. |
| getAmericanTimeString | [FIX ME] Utility method that makes typical American way of writing time. |
| getUTCAmericanTimeString | [FIX ME] Utility method that makes typical American way of writing time with UTC Time. |
Date.getMonthName = function ( obj, arr, length, isUTC )
Utility methods that connects an instance of Date Object and an Array of Name of month in any language. It only supports Georgian Calendar.
static
| obj | instance of Date Object |
| arr | [Option] array contains name of Month. Has to have 12 elements |
| length | [Option] length of returned String. |
| isUTC | [Option] use UTC value as time fetching method. |
(String) Literal expression of Month for given instance.
Date.getShortMonthName = function ( obj, arr )
Shortcut for getMonthName with requiring length as 3.
static
| obj | instance of Date Object |
| arr | [Option] array contains name of Month. Has to have 12 elements |
(String) 3 Characters Literal expression of Month for given instance.
Date.getUTCMonthName = function ( obj, arr, length )
Shortcut for getMonthName with requiring UTC time.
static
| obj | instance of Date Object |
| arr | [Option] array contains name of Month. Has to have 12 elements |
| length | [Option] length of returned String. |
(String) Literal expression of Month for given instance by using UTC time.
Date.getUTCShortMonthName = function ( obj, arr )
Shortcut for getMonthName with requiring length as 3 and UTC time.
static
| obj | instance of Date Object |
| arr | [Option] array contains name of Month. Has to have 12 elements |
(String) 3 Characters Literal expression of Month for given instance by using UTC time
Date.getAmericanTimeString = function ( obj )
[FIX ME] Utility method that makes typical American way of writing time.
static
| obj | instance of Date Object |
String.padding(). See String
(String) HH:MM AP format(H for hours, M for minutes and AP for AM or PM)
Utility methods that connects an instance of Date Object and an Array of Name of month in any language.
Date.getMonthName = function ( obj, arr, length, isUTC )
Shortcut for getMonthName with requiring length as 3.
Date.getShortMonthName = function ( obj, arr )
Shortcut for getMonthName with requiring UTC time.
Date.getUTCMonthName = function ( obj, arr, length )
Shortcut for getMonthName with requiring length as 3 and UTC time.
Date.getUTCShortMonthName = function ( obj, arr )
[FIX ME] Utility method that makes typical American way of writing time.
Date.getAmericanTimeString = function ( obj )
[FIX ME] Utility method that makes typical American way of writing time with UTC Time.
Date.getUTCAmericanTimeString = function ( obj )