UNPKG

@jeremyckahn/farmhand

Version:
7 lines (5 loc) 201 B
import { memoize } from './memoize.js' export const findCowById = memoize( (cowInventory: Array<farmhand.cow>, id: string): farmhand.cow | undefined => cowInventory.find(cow => id === cow.id) )