Модуль:RecipeData/getter

Версия от 12:17, 22 декабря 2021; JustPlayer (обсуждение | вклад) (JustPlayer изменил модель содержимого страницы Модуль:RecipeData/getter с «Scribunto» на «JavaScript»)
local p = {}
local data = require('Module:RecipeData/data')

-- Table: [ingredients]
function p.ingredients(recipe)
	local tbl = {}
	for _, v in ipairs(data[recipe]) do
		table.insert(tbl, v)
	end
	return tbl
end

return p