* Maps this stream through a 1-to-1 transform, forcing serial execution. * * @param transform A function mapping a stream element to a transformed * element. * * @returns A `LazyIterator` of transformed elements.
(transform: (value: T) => Promise<O>)
| 295 | * @returns A `LazyIterator` of transformed elements. |
| 296 | */ |
| 297 | serialMapAsync<O>(transform: (value: T) => Promise<O>): LazyIterator<O> { |
| 298 | return new AsyncMapIterator(this, transform).serial(); |
| 299 | } |
| 300 | |
| 301 | /** |
| 302 | * Maps this stream through a 1-to-many transform. |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…