aboutsummaryrefslogtreecommitdiffstats
path: root/lua/nvim-lsp-installer/core/functional/table.lua
blob: 37aee19e49d92f73d8435153490ea64f54251ba6 (plain) (blame)
1
2
3
4
5
6
7
8
9
local fun = require "nvim-lsp-installer.core.functional.function"

local _ = {}

_.prop = fun.curryN(function(index, tbl)
    return tbl[index]
end, 2)

return _