File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 11"use strict" ;
22
33/**
4- * @description intersect creates Set containing the intersection of elements between all sets
4+ * intersect creates Set containing the intersection of elements between all sets
55 * @param {Set[] } sets an array of sets being checked for shared elements
66 * @returns {Set } returns a new Set containing the intersecting items
77 */
@@ -31,7 +31,7 @@ function intersect(sets) {
3131}
3232
3333/**
34- * @description
34+ * Checks if a set is the subset of another set
3535 * @param {Set } bigSet a Set which contains the original elements to compare against
3636 * @param {Set } smallSet the set whos elements might be contained inside of bigSet
3737 * @returns {boolean } returns true if smallSet contains all elements inside of the bigSet
You can’t perform that action at this time.
0 commit comments