Lodash.isEqual

Performs a deep comparison between two values to determine if they are equivalent.

Note: This method supports comparing arrays, array buffers, booleans, date objects, error objects, maps, numbers, Object objects, regexes, sets, strings, symbols, and typed arrays. Object objects are compared by their own, not inherited, enumerable properties. Functions and DOM nodes are compared by strict equality, i.e. ===.

struct Lodash
nothrow @trusted @safe ref
isEqual
(
T
)
(
auto ref T other
)

Return Value

Type: auto ref

- Lodash chained on (boolean): true if the values are equivalent, else false.

Meta