(collection)
| 942 | } |
| 943 | |
| 944 | function collectionClass(collection) { |
| 945 | return isKeyed(collection) |
| 946 | ? KeyedCollection |
| 947 | : isIndexed(collection) |
| 948 | ? IndexedCollection |
| 949 | : SetCollection; |
| 950 | } |
| 951 | |
| 952 | function makeSequence(collection) { |
| 953 | return Object.create( |
no test coverage detected