(obj)
| 1505 | } |
| 1506 | |
| 1507 | function isAsyncIterable(obj) { |
| 1508 | return obj != null && typeof obj[SymbolAsyncIterator] === 'function'; |
| 1509 | } |
| 1510 | |
| 1511 | function isSyncIterable(obj) { |
| 1512 | return obj != null && typeof obj[SymbolIterator] === 'function'; |
no outgoing calls
no test coverage detected
searching dependent graphs…