Jump to content

Module:Fba

Permanently protected module
From Wikipedia, the free encyclopedia
This is the current revision of this page, as edited by Ahecht (talk | contribs) at 17:58, 3 March 2025 (use list from child module). The present address (URL) is a permanent link to this version.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

local p = {}

local list = require("Module:Fba/list")

function p.list(frame)
	return list.list(frame)
end

function p.clist(frame)
	return list.codes[frame.args[1]] or ""
end

function p.fbalist(frame)
	return list.fbas[frame.args[1]] or ""
end

return p