Jump to content

Main public logs

This is a combined display of all logs except the patrol, review, tag and thanks logs:

Who performed the action – enter their name without prefix under "Performer".
The page or user affected by an action – enter the page or user name (prefixed with "User:") under "Target".
User logs
  • 13:57, 30 May 2024 Yabaiyatsu talk contribs created page Module:YYSandbox (Created page with 'local public = {} local private = {} -- Removes leading and trailing spaces from strings function private.trimWhitespace(str) local whitespace = { [" "]=true, ["\n"]=true, ["\r"]=true } local _start = 1 while (whitespace[str:sub(_start, _start)]) do _start = _start + 1 end local _end = str:len() while (whitespace[str:sub(_end, _end)]) do _end = _end - 1 end return str:sub(_start, _end) end -- Checks if a tabl...')