UNPKG

@jeremyckahn/farmhand

Version:
12 lines (8 loc) • 307 B
import { cropLifeStage } from '../enums.js' import { getLifeStageRange } from './getLifeStageRange.js' const { GROWN } = cropLifeStage export const getLifeStageForTimeline = ( timeline: number[], daysElapsed: number ): cropLifeStage => getLifeStageRange(timeline)[Math.floor(daysElapsed)] || GROWN