@newdash/newdash
Version:
javascript/typescript utility library
12 lines (11 loc) • 381 B
TypeScript
export default baseMatchesProperty;
/**
* The base implementation of `matchesProperty` which doesn't clone `srcValue`.
*
* @private
* @ignore
* @param {string} path The path of the property to get.
* @param {*} srcValue The value to match.
* @returns {Function} Returns the new spec function.
*/
declare function baseMatchesProperty(path: string, srcValue: any): Function;