(s)
| 3653 | return s > o ? 1 : s < o ? -1 : 0 |
| 3654 | } |
| 3655 | function forceIterator(s) { |
| 3656 | var o = getIterator(s) |
| 3657 | if (!o) { |
| 3658 | if (!isArrayLike(s)) throw new TypeError('Expected iterable or array-like: ' + s) |
| 3659 | o = getIterator(Iterable(s)) |
| 3660 | } |
| 3661 | return o |
| 3662 | } |
| 3663 | function Record(s, o) { |
| 3664 | var i, |
| 3665 | a = function Record(_) { |
no test coverage detected