(item = {})
| 164 | } |
| 165 | |
| 166 | function isGrowing(item = {}) { |
| 167 | const status = landStatus(item); |
| 168 | return pickId(item) && status > 0 && ![10, 11].includes(status); |
| 169 | } |
| 170 | |
| 171 | function isHarvestable(item = {}) { |
| 172 | return pickId(item) && [10, 11].includes(landStatus(item)); |
nothing calls this directly
no test coverage detected