refactor(utils): remove unused code

This commit is contained in:
Smirnov Oleksandr 2024-04-17 01:51:05 +03:00
parent 4d2f9a23e0
commit 1bd95bf18b
2 changed files with 0 additions and 21 deletions

View file

@ -1,16 +1,5 @@
local utils = {}
local TITLE = "gopher.nvim"
---@param t table
---@return boolean
function utils.is_tbl_empty(t)
if t == nil then
return true
end
return next(t) == nil
end
---@param msg string
---@param lvl number
function utils.deferred_notify(msg, lvl)