Revision history of "Module:Csdcheck"

Jump to navigation Jump to search

Diff selection: Mark the radio boxes 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.

  • curprev 04:02, 20 January 2022Tachyony talk contribs 3,823 bytes +3,823 Created page with "-- -- This module checks whether any of a given set of input criteria are valid CSD criteria. -- It is also possible to specify pre-defined or custom sets of CSD criteria to check against. -- local p = {} function critMatch(s,test_values) -- returns true if s matches one of the table of test_values if type(test_values) == "table" then for n,value in ipairs(test_values) do if s == value then return true end end..."