Module:Languages/JSON

From The Languages of David J. Peterson
Jump to navigation Jump to search

Documentation for this module may be created at Module:Languages/JSON/documentation

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) or error("Language code not found")
	
	return lang:toJSON()
end

return export