function reduceRe-exportimport { reduce } from "https://deno.land/x/proc@0.21.0/tests/deps/asynciter.ts"; reduce<T, U>(iterable: AsyncIterable<T>,zero: U,reduceFn: (acc: U, item: T) => U | Promise<U>,): Promise<U>Reduce a sequence to a single value. Type ParametersTUParametersiterable: AsyncIterable<T>The reducing function. zero: UreduceFn: (acc: U, item: T) => U | Promise<U>ReturnsPromise<U>The result of applying the reducing function to each item and accumulating the result.