Module:icons: Difference between revisions

From GTA Connected
Jump to navigation Jump to search
(Created page with "function p.main(frame) local title = mw.title.new("OnAddIVNetworkEvent") local text = title:getContent() return text end")
 
No edit summary
Line 1: Line 1:
local p = {}
function p.main(frame)
function p.main(frame)
local title = mw.title.new("OnAddIVNetworkEvent")
local title = mw.title.new("OnAddIVNetworkEvent")
Line 4: Line 6:
return text
return text
end
end
return p

Revision as of 13:35, 9 June 2026

Documentation for this module may be created at Module:icons/doc

local p = {}

function p.main(frame)
	local title = mw.title.new("OnAddIVNetworkEvent")
	local text = title:getContent()
	return text
end

return p