Module:Sandbox/User:Simanelix/Namespace

Jump to navigation Jump to search
Documentation[create] [refresh]
This module has no documentation. If you know how to use this module, please create it.
local p = {}

function p.output(f)

	local args = f
	if f == mw.getCurrentFrame() then 
		args = require('Module:ProcessArgs').merge(true)
	end
	
	local output = mw.title.getCurrentTitle().nsText
	
	return output
	
end

return p