Anonymous
    ×
    Create a new article
    Write your page title here:
    We currently have 187 articles on Edge of Twilight Wiki. Type your article name above or click on one of the titles below and start writing!



    Edge of Twilight Wiki
    Revision as of 13:03, 8 September 2025 by User (talk | contribs) (1 revision imported)
    (diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

    This module supports Template:If empty. See here for test cases.



    local p = {}
    
    function p.main(frame)
    	local args = require('Module:Arguments').getArgs(frame, {wrappers = 'Template:If empty', removeBlanks = false})
    
    	for k,v in ipairs(args) do
    		if v ~= '' then
    			return v
    		end
    	end
    
    end
    
    return p