es-toolkit
Version:
A state-of-the-art, high-performance JavaScript utility library with a small bundle size and strong type annotations.
27 lines (26 loc) • 947 B
JavaScript
const require_isSubsetWith = require("../../array/isSubsetWith.js");
//#region src/fp/array/isSubsetWith.ts
/**
* Creates a predicate that checks subset membership with a custom equality function.
*
* Every value in the piped array must match at least one value in superset according
* to areItemsEqual.
*
* @template T - The type of elements in the arrays.
* @param superset - The array that may contain all values from the piped array.
* @param areItemsEqual - Returns true when a piped value and a superset value are equal.
* @returns A predicate for the piped array.
*
* @example
* import { isSubsetWith, pipe } from 'es-toolkit/fp';
*
* pipe([{ id: 1 }], isSubsetWith([{ id: 1 }, { id: 2 }], (a, b) => a.id === b.id));
* // => true
*/
function isSubsetWith(superset, areItemsEqual) {
return function(array) {
return require_isSubsetWith.isSubsetWith(superset, array, areItemsEqual);
};
}
//#endregion
exports.isSubsetWith = isSubsetWith;