Tachyony
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..."