Skip to content

Commit e004447

Browse files
committed
feat(maximum): add missing asyncMaximumFn
1 parent a796d90 commit e004447

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -757,6 +757,8 @@ export function maximumFn<T>(
757757
return async iterable => maximum(iterable, compare);
758758
}
759759

760+
export const asyncMaximumFn = maximumFn;
761+
760762
async function internalMaximum<T>(
761763
iterable: AsyncIterableLike<T>,
762764
compare: Comparator<T>

0 commit comments

Comments
 (0)