| 26 | } |
| 27 | |
| 28 | export class SetCollection extends Collection { |
| 29 | constructor(value) { |
| 30 | // eslint-disable-next-line no-constructor-return |
| 31 | return isCollection(value) && !isAssociative(value) ? value : SetSeq(value); |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | Collection.Keyed = KeyedCollection; |
| 36 | Collection.Indexed = IndexedCollection; |
no outgoing calls
no test coverage detected