(obj)
| 1752 | } |
| 1753 | __name(isAsyncIterable, "isAsyncIterable"); |
| 1754 | function isIterable(obj) { |
| 1755 | return !!(obj != null && (typeof obj[Symbol.iterator] === "function" || typeof obj[Symbol.asyncIterator] === "function")); |
| 1756 | } |
| 1757 | __name(isIterable, "isIterable"); |
| 1758 | function hasSafeIterator(obj) { |
| 1759 | const prototype = Object.getPrototypeOf(obj); |
no outgoing calls
no test coverage detected
searching dependent graphs…