UNPKG

@jeremyckahn/farmhand

Version:
12 lines (11 loc) 244 B
export function totalIngredientsInRecipe(recipe, amount = 1) { return ( amount * // @ts-expect-error Object.values(recipe.ingredients).reduce( // @ts-expect-error (acc, quantity) => acc + quantity, 0 ) ) }