پودمان:languages/JSON

از ویکی‌واژه

توضیحات این پودمان می‌تواند در پودمان:languages/JSON/توضیحات قرار گیرد.

local export = {}

function export.getByCode(frame)
	local args = frame.args
	local langcode = args[1] or error("Language code has not been specified. Please pass parameter 1 to the module invocation.")
	
	local lang = require("Module:languages").getByCode(langcode)
	
	return require("Module:JSON").toJSON(lang)
end

return export