Skip to content

Instantly share code, notes, and snippets.

@jyrkive
Created June 30, 2018 11:17
Show Gist options
  • Save jyrkive/db6c9b80884da6a3f667af4abdf721b7 to your computer and use it in GitHub Desktop.
Save jyrkive/db6c9b80884da6a3f667af4abdf721b7 to your computer and use it in GitHub Desktop.
local function ordered_map_of_keys(t)
local ordered_map = {}
for k, v in pairs(t)
table.insert(ordered_map, k)
end
table.sort(ordered_map)
return ordered_map
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment