* Check if value is an async iterable (has Symbol.asyncIterator). * @returns {boolean}
(value)
| 80 | * @returns {boolean} |
| 81 | */ |
| 82 | function isAsyncIterable(value) { |
| 83 | return typeof value?.[SymbolAsyncIterator] === 'function'; |
| 84 | } |
| 85 | |
| 86 | // ============================================================================= |
| 87 | // Primitive Conversion |
no outgoing calls
no test coverage detected