(s)
| 1710 | return o |
| 1711 | } |
| 1712 | function indexedSeqFromValue(s) { |
| 1713 | var o = maybeIndexedSeqFromValue(s) |
| 1714 | if (!o) throw new TypeError('Expected Array or iterable object of values: ' + s) |
| 1715 | return o |
| 1716 | } |
| 1717 | function seqFromValue(s) { |
| 1718 | var o = maybeIndexedSeqFromValue(s) || ('object' == typeof s && new ObjectSeq(s)) |
| 1719 | if (!o) |
no test coverage detected