vicious/date.lua

28 lines
715 B
Lua
Raw Normal View History

----------------------------------------------------------
-- Licensed under the GNU General Public License version 2
-- * Copyright (C) 2009 Adrian C. <anrxc_sysphere_org>
-- * Derived from Wicked, copyright of Lucas de Vries
----------------------------------------------------------
-- {{{ Grab environment
local os = { date = os.date }
local setmetatable = setmetatable
-- }}}
-- Date: provides access to os.date with optional custom formatting
module("vicious.date")
-- {{{ Date widget type
2009-08-07 17:41:10 +02:00
local function worker(format)
if format == nil then
return os.date()
else
return os.date(format)
end
end
-- }}}
setmetatable(_M, { __call = function(_, ...) return worker(...) end })