1234567891011121314151617181920212223242526272829303132333435363738394041 |
- import baseIsMatch from './_baseIsMatch.js';
- import getMatchData from './_getMatchData.js';
- function isMatchWith(object, source, customizer) {
- customizer = typeof customizer == 'function' ? customizer : undefined;
- return baseIsMatch(object, source, getMatchData(source), customizer);
- }
- export default isMatchWith;
|