1
0
pretty/init.lua
Jon Michael Aanes 8c154e682e
Some checks failed
LÖVE/Lua Library / Test (push) Failing after 6s
LÖVE/Lua Library / Static-Analysis (push) Failing after 4s
Remove version for now
2024-07-12 22:54:34 +02:00

13 lines
399 B
Lua

-- pretty.init
-- In case somebody loads `init.lua`. Just redirects to `pretty.lua`.
local _VERSION = '0.5.5'
--------------------------------------------------------------------------------
local premodule = (...)
if premodule == 'init' then premodule = '' end
local pretty = require (premodule .. (premodule ~= '' and '.' or '') .. 'pretty')
--pretty._VERSION = _VERSION -- TODO
return pretty