aboutsummaryrefslogtreecommitdiffstats
path: root/lua/nvim-lsp-installer/core/functional/table.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/nvim-lsp-installer/core/functional/table.lua')
-rw-r--r--lua/nvim-lsp-installer/core/functional/table.lua9
1 files changed, 0 insertions, 9 deletions
diff --git a/lua/nvim-lsp-installer/core/functional/table.lua b/lua/nvim-lsp-installer/core/functional/table.lua
deleted file mode 100644
index 37aee19e..00000000
--- a/lua/nvim-lsp-installer/core/functional/table.lua
+++ /dev/null
@@ -1,9 +0,0 @@
-local fun = require "nvim-lsp-installer.core.functional.function"
-
-local _ = {}
-
-_.prop = fun.curryN(function(index, tbl)
- return tbl[index]
-end, 2)
-
-return _