Module:ProcessArgs: Revision history

From Downtime Wiki

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.

25 April 2025

  • curprev 04:3904:39, 25 April 2025 Orashgle talk contribs m 771 bytes 0 1 revision imported
  • curprev 03:4303:43, 25 April 2025 Orashgle talk contribs 771 bytes +771 Created page with "local p = {} function p.norm( origArgs ) if type( origArgs ) ~= 'table' then origArgs = mw.getCurrentFrame():getParent().args end local args = {} for k, v in pairs( origArgs ) do v = mw.text.trim( tostring( v ) ) if v ~= '' then args[k] = v end end return args end function p.merge( origArgs, parentArgs, norm ) if type( origArgs ) ~= 'table' then norm = origArgs local f = mw.getCurrentFrame() origArgs = f.args parentArgs = f:getParent().args..."

4 April 2020

  • curprev 18:5918:59, 4 April 2020 MC>Sonicwave 771 bytes +771 removed redundant check per suggestion on talk page