mirror of
https://github.com/foo-dogsquared/dotfiles.git
synced 2025-04-24 12:19:11 +00:00
8 lines
69 B
Lua
8 lines
69 B
Lua
local M = {}
|
|
|
|
function M:to_bool(v)
|
|
return not not v
|
|
end
|
|
|
|
return M
|