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



The Dream Shrine

All public logs

Combined display of all available logs of The Dream Shrine. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 10:09, 6 August 2024 MagicPixieDreamGirl talk contribs created page Module:UtilsFunction (Created page with "local p = {} function p.identity(...) return ... end function p.memoize(fn) local cache = {} return function(...) local key = mw.dumpObject({...}) if not cache[key] then cache[key] = fn(...) end return cache[key] end end function p.negate(fn) return function(...) return not fn(...) end end function p.noop() return nil end function p.peek(tbl) mw.logObject(tbl) return tbl end function p.pipe(...) local state = {...} return function(functions...")