Jump to content

Module:Fba

Permanently protected module
From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Ahecht (talk | contribs) at 17:33, 3 March 2025 (Create). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

local p = {}

function p.list(frame)
	local list = require("Module:Fba/list")
	local map = {}
	
	for k, v in pairs(list.fbas) do
		map[k] = v
	end
	for k, v in pairs(list.codes) do
		map[k] = v
	end
	
	return map[frame.args[1]] or ""
end

return p