(o)
| 167 | } |
| 168 | |
| 169 | export function __values(o) { |
| 170 | var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0; |
| 171 | if (m) return m.call(o); |
| 172 | if (o && typeof o.length === "number") return { |
| 173 | next: function () { |
| 174 | if (o && i >= o.length) o = void 0; |
| 175 | return { value: o && o[i++], done: !o }; |
| 176 | } |
| 177 | }; |
| 178 | throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined."); |
| 179 | } |
| 180 | |
| 181 | export function __read(o, n) { |
| 182 | var m = typeof Symbol === "function" && o[Symbol.iterator]; |
no outgoing calls
no test coverage detected
searching dependent graphs…