gitlab-org--gitlab-foss/app/assets/javascripts/lib/utils/set.js

9 lines
334 B
JavaScript

/**
* Checks if the first argument is a subset of the second argument.
* @param {Set} subset The set to be considered as the subset.
* @param {Set} superset The set to be considered as the superset.
* @returns {boolean}
*/
export const isSubset = (subset, superset) =>
Array.from(subset).every((value) => superset.has(value));