(value)
| 13 | |
| 14 | export class KeyedCollection extends Collection { |
| 15 | constructor(value) { |
| 16 | // eslint-disable-next-line no-constructor-return |
| 17 | return isKeyed(value) ? value : KeyedSeq(value); |
| 18 | } |
| 19 | } |
| 20 | |
| 21 | export class IndexedCollection extends Collection { |