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