UNPKG

es-toolkit

Version:

A state-of-the-art, high-performance JavaScript utility library with a small bundle size and strong type annotations.

36 lines (35 loc) 1.09 kB
const require_isMatchWith = require("./isMatchWith.js"); //#region src/compat/predicate/isMatch.ts /** * Checks if the target matches the source by comparing their structures and values. * This function supports deep comparison for objects, arrays, maps, and sets. * * @param target - The target value to match against. * @param source - The source value to match with. * @returns Returns `true` if the target matches the source, otherwise `false`. * * @example * // Basic usage * isMatch({ a: 1, b: 2 }, { a: 1 }); // true * * @example * // Matching arrays * isMatch([1, 2, 3], [1, 2, 3]); // true * * @example * // Matching maps * const targetMap = new Map([['key1', 'value1'], ['key2', 'value2']]); * const sourceMap = new Map([['key1', 'value1']]); * isMatch(targetMap, sourceMap); // true * * @example * // Matching sets * const targetSet = new Set([1, 2, 3]); * const sourceSet = new Set([1, 2]); * isMatch(targetSet, sourceSet); // true */ function isMatch(target, source) { return require_isMatchWith.isMatchWith(target, source, () => void 0); } //#endregion exports.isMatch = isMatch;