var baseIsEqual = ,
get = ,
hasIn = ,
isKey = ,
isStrictComparable = ,
matchesStrictComparable = ,
toKey = ;
/** Used to compose bitmasks for value comparisons. */
var COMPARE_PARTIAL_FLAG = 1,
COMPARE_UNORDERED_FLAG = 2;
/**
* The base implementation of `_.matchesProperty` which doesn't clone `srcValue`.
*
* @private
* @param {string} path The path of the property to get.
* @param {*} srcValue The value to match.
* @returns {Function} Returns the new spec function.
*/
module.exports = baseMatchesProperty;