Enumerable.prototype.transform<U>(fn: TransformerFunction<T, U> | TransformStream<T, U>): Enumerable<U>
Transform the iterable from one type to another with an opportunity to catch and handle errors.
fn: TransformerFunction<T, U> | TransformStream<T, U>
The transformer function or TransformStream.
The transformed iterable.