MCPcopy
hub / github.com/immutable-js/immutable-js / isSuperset

Function isSuperset

src/CollectionImpl.js:393–396  ·  view source on GitHub ↗
(iter)

Source from the content-addressed store, hash-verified

391 },
392
393 isSuperset(iter) {
394 iter = typeof iter.isSubset === 'function' ? iter : Collection(iter);
395 return iter.isSubset(this);
396 },
397
398 keyOf(searchValue) {
399 return this.findKey((value) => is(value, searchValue));

Callers

nothing calls this directly

Calls 2

CollectionClass · 0.90
isSubsetMethod · 0.80

Tested by

no test coverage detected