UNPKG

@jeremyckahn/farmhand

Version:
13 lines (12 loc) 295 B
/** * @param {farmhand.state} state * @returns {farmhand.state} */ export const updateInventoryRecordsForNextDay = state => ({ ...state, todaysPurchases: {}, todaysStartingInventory: state.inventory.reduce((acc, { id, quantity }) => { acc[id] = quantity return acc }, {}), })