Methods
(inner) isNull(input)
    Checks if the input is null
    Parameters:
| Name | Type | Description | 
|---|---|---|
input | 
            
            * | Input Argument | 
- Source:
 
Returns:
    true if input is null, false otherwise
    
        
            
    
    
    (inner) isNumber(input)
    Checks if the input is a number
    Parameters:
| Name | Type | Description | 
|---|---|---|
input | 
            
            * | Input Argument | 
- Source:
 
Returns:
    true if input is a number, false otherwise
    
        
            
    
    
    (inner) isObject(input)
    Checks if the input is an object excluding null
    Parameters:
| Name | Type | Description | 
|---|---|---|
input | 
            
            * | Input Argument | 
- Source:
 
Returns:
    true if input is an object excluding null, false otherwise
    
        
            
    
    
    (inner) isString(input)
    Checks if the input is a string
    Parameters:
| Name | Type | Description | 
|---|---|---|
input | 
            
            * | Input Argument | 
- Source:
 
Returns:
    true if input is a string, false otherwise