12 lines
273 B
JavaScript
12 lines
273 B
JavaScript
'use strict';
|
|
|
|
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
|
|
const isMatchWith = require('./isMatchWith.js');
|
|
|
|
function isMatch(target, source) {
|
|
return isMatchWith.isMatchWith(target, source, () => undefined);
|
|
}
|
|
|
|
exports.isMatch = isMatch;
|