source: node_modules/es-toolkit/dist/compat/predicate/isMatch.mjs

Last change on this file was a762898, checked in by istevanoska <ilinastevanoska@…>, 5 months ago

Added visualizations

  • Property mode set to 100644
File size: 165 bytes
Line 
1import { isMatchWith } from './isMatchWith.mjs';
2
3function isMatch(target, source) {
4 return isMatchWith(target, source, () => undefined);
5}
6
7export { isMatch };
Note: See TracBrowser for help on using the repository browser.