dotfiles/nvim/lua/foodogsquared/utils.lua

8 lines
69 B
Lua

local M = {}
function M:to_bool(v)
return not not v
end
return M