Filters recipes to only include those that are in season for the current month
Uses the same seasonal logic as the main filtering system, checking if recipes contain the current month or are available year-round ('*').
Array of recipes to filter
Array of recipes that are currently in season
const seasonalRecipes = filterRecipesByCurrentSeason(allRecipes);console.log(`Found ${seasonalRecipes.length} seasonal recipes`); Copy
const seasonalRecipes = filterRecipesByCurrentSeason(allRecipes);console.log(`Found ${seasonalRecipes.length} seasonal recipes`);
Filters recipes to only include those that are in season for the current month
Uses the same seasonal logic as the main filtering system, checking if recipes contain the current month or are available year-round ('*').