Exports the ValidationMixin and some commonly needed validations
        
        
- Version:
 - 
		
- 3.0.0
 
 - Since:
 - 
		
- 1.0.0
 
 - Source:
 
Classes
Methods
- 
    
<static> isAllDigits(value)
 - 
    
    Checks to see if a given value is all digits or not.
Parameters:
Name Type Description valueString Returns:
- Type
 - boolean
 
 - 
    
<static> isEqual(propName)
 - 
    
    Tracks two properties of any class to be equal.
Parameters:
Name Type Description propNameString - Source:
 
Returns:
True or false if the given value passes the given regex test is valid.- Type
 - function
 
 - 
    
<static> isRequired(value)
 - 
    
    isRequired
Parameters:
Name Type Description valueString Returns:
- Type
 - Boolean
 
 - 
    
<static> maxLength(length)
 - 
    
    Checks to see if the given value meets the maximum length given.
Parameters:
Name Type Description lengthNumber The max length - Source:
 
Returns:
- Type
 - function
 
 - 
    
<static> minLength(length)
 - 
    
    Checks to see if the given value meets the minimum length given.
Parameters:
Name Type Description lengthNumber The min length - Source:
 
Returns:
- Type
 - function
 
 - 
    
<static> validationMixin(superClass)
 - 
    
    
    
    
    
        
Parameters:
Name Type Description superClassObject Returns:
- Type
 - ValidationMixin