Creates a function that performs a partial deep comparison between a given
object and source, returning true if the given object has equivalent
property values, else false.
Note: The created function is equivalent to isMatch with source
partially applied.
Partial comparisons will match empty array and empty object source
values against any array or object value, respectively. See isEqual
for a list of supported value comparisons.
Creates a function that performs a partial deep comparison between a given object and
source, returningtrueif the given object has equivalent property values, elsefalse.Note: The created function is equivalent to
isMatchwithsourcepartially applied.Partial comparisons will match empty array and empty object
sourcevalues against any array or object value, respectively. SeeisEqualfor a list of supported value comparisons.