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

Module:UtilsFunction: Revision history

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

6 August 2024

  • curprev 10:0910:09, 6 August 2024MagicPixieDreamGirl talk contribs 1,125 bytes +1,125 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..."