1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-27 13:00:04 +08:00
SpaceVim/lua/spacevim/api/data/dict.lua

20 lines
169 B
Lua
Raw Normal View History

2020-12-20 20:22:11 +08:00
local M = {}
function M.entrys(d)
end
function M.pick(d, keys)
local new_d = {}
for key, value in pairs(d) do
end
return new_d
end
return M