(iter)
| 386 | hasIn: hasIn, |
| 387 | |
| 388 | isSubset(iter) { |
| 389 | iter = typeof iter.includes === 'function' ? iter : Collection(iter); |
| 390 | return this.every((value) => iter.includes(value)); |
| 391 | }, |
| 392 | |
| 393 | isSuperset(iter) { |
| 394 | iter = typeof iter.isSubset === 'function' ? iter : Collection(iter); |
nothing calls this directly
no test coverage detected