Date related methods
        
        
        
    
    Methods
# static getMonth(string) → {int}
        Gets the month number from a literal localized name. 0 is january, 11 is december
    
    
    Parameters:
| Name | Type | Description | 
|---|---|---|
| string | string | The month name | 
The month number
    
    
    int
    # static getMonthName(string) → {string}
        Gets the month name from an index. 0 is january, 11 is december
    
    
    Parameters:
| Name | Type | Description | 
|---|---|---|
| string | int | The month index | 
The month name
    
    
    string
    # static toString(date) → {string}
        Returns a pretty formatted string representing the date
    
    
    Parameters:
| Name | Type | Description | 
|---|---|---|
| date | Date | The date | 
- To Do:
- 
        - format option
 
The date
    
    
    string