UNPKG

@newdash/newdash

Version:

javascript/typescript utility library

13 lines (12 loc) 545 B
export default baseIsMatch; /** * The base implementation of `isMatch`. * * @private * @param {Object} object The object to inspect. * @param {Object} source The object of property values to match. * @param {Array} matchData The property names, values, and compare flags to match. * @param {Function} [customizer] The function to customize comparisons. * @returns {boolean} Returns `true` if `object` is a match, else `false`. */ declare function baseIsMatch(object: any, source: any, matchData: any[], customizer?: Function): boolean;