UNPKG

@jeremyckahn/farmhand

Version:
13 lines (10 loc) 248 B
export const withdrawCow = ( state: farmhand.state, cowId: string ): farmhand.state => { const { cowIdOfferedForTrade } = state if (cowId === cowIdOfferedForTrade) { state = { ...state, cowIdOfferedForTrade: '' } } return state }