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:52, 3 March 2025 (add clist and fbalist). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

local p = {}

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

function p.list(frame)
	return list.fbas[frame.args[1]] or list.codes[frame.args[1]] or ""
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