Alex
Created page with "local p = {} local paramtest = require('Module:Paramtest') local yesno = require('Module:Yesno') local default = paramtest.default_to -- string.lower which also accepts `nil` values without erroring function lc(str) return str and string.lower(str) end -- array contains val function contains(tbl, val) for _, item in ipairs(tbl) do if item == val then return true end end return false end -- multiply num by mul, rounded to 1 decimal function times(num, mul)..."