aboutsummaryrefslogtreecommitdiff
path: root/date.lua
blob: 3dfc7b4e30ca4d2eebf295583b4b2a07568e1077 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
----------------------------------------------------------
-- 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
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 })