1
0
pretty/init.lua

13 lines
389 B
Lua
Raw Normal View History

2017-07-17 19:33:11 +00:00
-- pretty.init
-- In case somebody loads `init.lua`. Just redirects to `pretty.lua`.
local _VERSION = '0.5.1'
2024-07-06 21:40:28 +00:00
2017-07-17 19:33:11 +00:00
--------------------------------------------------------------------------------
2017-07-17 11:36:56 +00:00
local premodule = (...)
if premodule == 'init' then premodule = '' end
2024-07-06 21:40:28 +00:00
local pretty = require (premodule .. (premodule ~= '' and '.' or '') .. 'pretty')
pretty._VERSION = _VERSION
return pretty