| Casts value as an array if it's not one.
|
| Creates a shallow clone of value .
|
| This method is like _.clone except that it recursively clones value .
|
| This method is like _.cloneWith except that it recursively clones value .
|
| This method is like _.clone except that it accepts customizer which
is invoked to produce the cloned value. If customizer returns undefined ,
cloning is handled by the method instead. The customizer is invoked with
up to four arguments; (value [, index|key, object, stack]).
|
| Checks if object conforms to source by invoking the predicate
properties of source with the corresponding property values of object .
|
| Performs a
SameValueZero
comparison between two values to determine if they are equivalent.
|
| Checks if value is array-like. A value is considered array-like if it's
not a function and has a value.length that's an integer greater than or
equal to 0 and less than or equal to Number.MAX_SAFE_INTEGER .
|
| This method is like _.isArrayLike except that it also checks if value
is an object.
|
| Checks if value is classified as a boolean primitive or object.
|
| Checks if value is likely a DOM element.
|
| Checks if value is an empty object, collection, map, or set.
|
| Performs a deep comparison between two values to determine if they are
equivalent.
|
| This method is like _.isEqual except that it accepts customizer which
is invoked to compare values. If customizer returns undefined , comparisons
are handled by the method instead. The customizer is invoked with up to
six arguments: (objValue, othValue [, index|key, object, other, stack]).
|
| Checks if value is an Error , EvalError , RangeError , ReferenceError ,
SyntaxError , TypeError , or URIError object.
|
| Checks if value is a finite primitive number.
|
| Checks if value is classified as a Function object.
|
| Checks if value is an integer.
|
| Checks if value is a valid array-like length.
|
| Performs a partial deep comparison between object and source to
determine if object contains equivalent property values.
|
| This method is like _.isMatch except that it accepts customizer which
is invoked to compare values. If customizer returns undefined , comparisons
are handled by the method instead. The customizer is invoked with five
arguments: (objValue, srcValue, index|key, object, source).
|
| |
| Checks if value is a pristine native function.
|
| Checks if value is null or undefined .
|
| |
| Checks if value is classified as a Number primitive or object.
|
| Checks if value is the
language type
of Object . (e.g. arrays, functions, objects, regexes, new Number(0) , and new String('') )
|
| Checks if value is object-like. A value is object-like if it's not null
and has a typeof result of "object".
|
| Checks if value is a plain object, that is, an object created by the
Object constructor or one with a [[Prototype]] of null .
|
| Checks if value is a safe integer. An integer is safe if it's an IEEE-754
double precision number which isn't the result of a rounded unsafe integer.
|
| Checks if value is classified as a String primitive or object.
|
| Checks if value is classified as a Symbol primitive or object.
|
| Checks if value is undefined .
|
| Checks if value is classified as a WeakMap object.
|
| Checks if value is classified as a WeakSet object.
|
| Converts value to an array.
|
| Converts value to a finite number.
|
| Converts value to an integer.
|
| Converts value to an integer suitable for use as the length of an
array-like object.
|
| Converts value to a number.
|
| Converts value to a plain object flattening inherited enumerable string
keyed properties of value to own properties of the plain object.
|
| Converts value to a safe integer. A safe integer can be compared and
represented correctly.
|
| Converts value to a string. An empty string is returned for null
and undefined values. The sign of -0 is preserved.
|