new utls()
        Throws error if u try to instantiate utls class
    
    
    
    
    
    
    
Methods
- 
    <static> camelCase(string)
- 
    
    Returns a camel-cased string. Word boundaries are "\b", "-", "_", " "Parameters:Name Type Description stringString Returns:- Type
- String
 
- 
    <static> equals(first, second)
- 
    
    Checks objects or arrays are equalParameters:Name Type Description firstArray | Object secondArray | Object Returns:- Type
- Boolean
 
- 
    <static> extend(destination, source)
- 
    
    Copy properties from source to destination objectParameters:Name Type Description destinationObject sourceObject Returns:- Type
- *
 
- 
    <static> fileExists()
- 
    
    Checks whether a file or directory existsThrows:ErrorReturns:- Type
- Boolean
 
- 
    <static> filter(value, callback, key, origin)
- 
    
    
    
    
    
        Parameters:Name Type Description value* callbackfunction keyString | Number origin* Returns:- Type
- *
 
- 
    <static> getType(value)
- 
    
    Returns type of given value or name of function/object.Parameters:Name Type Description value* Returns:- Type
- String
 
- 
    <static> isCircular(value)
- 
    
    
    
    
    
        Parameters:Name Type Description valueArray | Object Returns:- Type
- *
 
- 
    <static> lcFirst(string)
- 
    
    Returns a string with the first character of string, lowercased if that character is alphabetic.Parameters:Name Type Description stringString Returns:- Type
- String
 
- 
    <static> map(value, callback, key, origin)
- 
    
    
    
    
    
        Parameters:Name Type Description value* callbackfunction keyString | Number origin* Returns:- Type
- *
 
- 
    <static> microtime()
- 
    
    Returns number of seconds since 1 January 1970 00:00:00 UTC.Returns:- Type
- Number
 
- 
    <static> mkdir(path, options)
- 
    
    Makes directoryParameters:Name Type Description pathString optionsOptions Throws:Error
- 
    <static> pascalCase(string)
- 
    
    Returns a pascal-cased string. Word boundaries are "\b", "-", "_", " "Parameters:Name Type Description stringString Returns:- Type
- String
 
- 
    <static> promisesWaterfall(promises, initial)
- 
    
    
    
    
    
        Parameters:Name Type Description promisesArray.<Promise> initialPromise Returns:- Type
- Promise
 
- 
    <static> traverse(value, match, callback, key, origin)
- 
    
    
    
    
    
        Parameters:Name Type Description value* matchfunction callbackfunction keyString | Number origin* Returns:- Type
- *
 
- 
    <static> ucFirst(string)
- 
    
    Returns a string with the first character of string capitalized, if that character is alphabetic.Parameters:Name Type Description stringString Returns:- Type
- String
 
- 
    <static> vcopy(value)
- 
    
    Makes copy of value (dereferences object values)Parameters:Name Type Description value* Returns:- Type
- *