Lodash.isEqualWith

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]).

struct Lodash
nothrow @trusted @safe ref
isEqualWith
(
T
U
)
(
auto ref T other
,
auto ref U customizer
)

Return Value

Type: auto ref

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

Meta