Computes the maximum value of array. If array is empty or falsey, undefined is returned.
This is equivalent to the max function.
Returns the largest value in array.
If array is empty or falsey, undefined is returned.
Computes the minimum value of array. If array is empty or falsey, undefined is returned.
This is equivalent to the min function.
Returns the smallest value in array.
Computes the value that appears most frequently in array.
This is equivalent to the mode function.
Returns the value that appears most frequently in array.
Gets the value at path of object. If the resolved value is undefined, the defaultValue is returned in its place.
This is equivalent to the get function.
Returns the resolved value.
Creates an array of the own enumerable string keyed property values of object.
This is equivalent to the values function.
Returns the values in object.
Checks if path is a direct or inherited property of object.
This is equivalent to the hasIn function.
Returns true if path is a direct or inherited property of object, else false.
Checks if path is a direct property of object.
This is equivalent to the has function.
Returns true if path is a direct property of object, else false.