Codibre/fluent-iterable

View on GitHub
src/async/to-object-chain-reduce-async.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { toObjectChainReduceRecipe } from '../recipes';
import { basicAsync } from './basic-ingredients-async';
import { flattenAsync } from './flatten-async';
import { groupAsync } from './group-async';
import { reduceAsync } from './reduce-async';
import { toObjectAsync } from './to-object-async';

export const toObjectChainReduceAsync = toObjectChainReduceRecipe({
  ...basicAsync,
  group: groupAsync,
  toObject: toObjectAsync,
  flatten: flattenAsync,
  reduce: reduceAsync,
});