(x)
| 55289 | return x && typeof x[Symbol.iterator] === "function"; |
| 55290 | }; |
| 55291 | var isAsyncIterable = function isAsyncIterable(x) { |
| 55292 | return x && typeof x[Symbol.asyncIterator] === "function"; |
| 55293 | }; |
| 55294 | var isIterator = function isIterator(x) { |
| 55295 | return x && isFunction(x.next); |
| 55296 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected