Module:String

From Zelda Wiki, the Zelda encyclopedia
Jump to navigation Jump to search

local p = {}

local utilsString = require("Module:UtilsString")

-- Used by [[Template:Page Name]]
function p.StripTrailingParentheses(frame)
	local str = frame.args[1]
	return str and utilsString.stripTrailingParentheses(str)
end

return p