Find what you can cook with your emojis
Emoji recipes fetched from https://raw.githubusercontent.com/EmojiMeals/recipes/master/recipes.json
.package(
url: "https://github.com/schmidyy/meals-swift",
.branch("master")
)
let meals = EmojiMeals()
meals.mealify("๐", "๐
", "๐ง") // "๐"
// Provide ingredients in any order
meals.mealify("๐ง", "๐", "๐
") // "๐"
// Provide other recipes manually
meals.recipes.append(Recipe(ingredients: ["๐ฐ", "๐"], meal: "๐ฅฎ"))
meals.mealify("๐ฐ", "๐") // "๐ฅฎ"