17,105
edits
(Remove joinList: Exists within Scribunto provided libraries as mw.text.listToText; Indent with tabs instead of spaces) |
m (Formatting) |
||
Line 123: | Line 123: | ||
function p.tableSort(theTable, sortCol, ascend) | function p.tableSort(theTable, sortCol, ascend) | ||
local new function sorter(r1, r2) | local new function sorter(r1, r2) | ||
if | if ascend then | ||
return r1[sortCol] < r2[sortCol] | return r1[sortCol] < r2[sortCol] | ||
else | else |