(iterable: Iterable<T> | AsyncIterable<T>)
| 61 | * ``` |
| 62 | */ |
| 63 | export async function* asyncifyIterable<T>(iterable: Iterable<T> | AsyncIterable<T>): AsyncIterable<T> { |
| 64 | yield* iterable; |
| 65 | } |
| 66 | |
| 67 | /** |
| 68 | * Lazily splits the input async iterable into chunks of specified size. |
no outgoing calls
no test coverage detected
searching dependent graphs…