rolling-14

This commit is contained in:
Lars Mueller 2020-04-05 13:14:05 +02:00
parent 4ee679f187
commit 8003227d33

@ -1,7 +1,7 @@
-- Table helpers -- Table helpers
function map_index(table, func) function map_index(table, func)
return setmetatable(roles, { return setmetatable(table, {
__index = function(table, key) __index = function(table, key)
return rawget(table, func(key)) return rawget(table, func(key))
end, end,