(s)
| 3637 | return (assertNotInfinite(s.size), ensureSize(s)) |
| 3638 | } |
| 3639 | function iterableClass(s) { |
| 3640 | return isKeyed(s) ? KeyedIterable : isIndexed(s) ? IndexedIterable : SetIterable |
| 3641 | } |
| 3642 | function makeSequence(s) { |
| 3643 | return Object.create( |
| 3644 | (isKeyed(s) ? KeyedSeq : isIndexed(s) ? IndexedSeq : SetSeq).prototype |
no test coverage detected