(iter)
| 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)); |
nothing calls this directly
no test coverage detected