Jon Michael Aanes
0486b674fc
Some checks failed
LÖVE/Lua Library / Static-Analysis (push) Failing after 0s
13 lines
383 B
Lua
13 lines
383 B
Lua
-- pretty.init
|
|
-- In case somebody loads `init.lua`. Just redirects to `pretty.lua`.
|
|
|
|
_VERSION = '0.5.0'
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
local premodule = (...)
|
|
if premodule == 'init' then premodule = '' end
|
|
local pretty = require (premodule .. (premodule ~= '' and '.' or '') .. 'pretty')
|
|
pretty._VERSION = _VERSION
|
|
return pretty
|