8 lines
165 B
JavaScript
8 lines
165 B
JavaScript
import { isMatchWith } from './isMatchWith.mjs';
|
|
|
|
function isMatch(target, source) {
|
|
return isMatchWith(target, source, () => undefined);
|
|
}
|
|
|
|
export { isMatch };
|