()
| 1073 | const factor = 10 ** digits; |
| 1074 | return Math.round(value * factor) / factor; |
| 1075 | } |
| 1076 | |
| 1077 | function getPlanCache(): Record<string, { data: CropPlan; timestamp: number }> { |
| 1078 | try { |
| 1079 | const cached = localStorage.getItem(CROP_PLAN_CACHE_KEY); |
| 1080 | return cached ? JSON.parse(cached) : {}; |
| 1081 | } catch { |
| 1082 | return {}; |
| 1083 | } |
| 1084 | } |
| 1085 |
no outgoing calls
no test coverage detected