remove unused table_keys

This commit is contained in:
Christopher Monsanto 2020-05-24 23:41:54 -04:00
parent 37151e4456
commit c417e966a8

View File

@ -57,10 +57,3 @@ function rep(args)
return str
end
function table_keys(t)
local result = {}
for k, v in pairs(t) do
table.insert(result, k)
end
return result
end