Codibre/fluent-iterable

View on GitHub
src/sync/min-max-ingredients.ts

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
import { MinMaxIngredients } from '../recipes/ingredients';
import { basic } from './basic-ingredients';
import { first } from './first';
import { last } from './last';

export const minMaxIngredients: MinMaxIngredients = {
  ...basic,
  first,
  last,
};