Jump to content

Module:Fba: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
add clist and fbalist
use list from child module
 
Line 4: Line 4:


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



Latest revision as of 17:58, 3 March 2025

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