Codibre/fluent-iterable

View on GitHub
src/sync/to-object-chain.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { toObjectChainRecipe } from '../recipes';
import { basic } from './basic-ingredients';
import { flatten } from './flatten';
import { group } from './group';
import { reduce } from './reduce';
import { toObject } from './to-object';

export const toObjectChain = toObjectChainRecipe({
  ...basic,
  group,
  toObject,
  flatten,
  reduce,
});