UNPKG

@jeremyckahn/farmhand

Version:
8 lines (6 loc) 249 B
import { maxYieldOfRecipe } from './maxYieldOfRecipe.js' export const canMakeRecipe = ( recipe: farmhand.recipe, inventory: Array<{ id: string; quantity: number }>, howMany: number ): boolean => maxYieldOfRecipe(recipe, inventory) >= howMany