| 19 | } |
| 20 | |
| 21 | export class IndexedCollection extends Collection { |
| 22 | constructor(value) { |
| 23 | // eslint-disable-next-line no-constructor-return |
| 24 | return isIndexed(value) ? value : IndexedSeq(value); |
| 25 | } |
| 26 | } |
| 27 | |
| 28 | export class SetCollection extends Collection { |
| 29 | constructor(value) { |
no outgoing calls
no test coverage detected