Jump to content

Module:Sandbox/Cyborg Coder/Dates

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Cyborg Coder (talk | contribs) at 20:43, 29 November 2018. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
--Cyborg Coder Google Code-in, Lua Task 7 - Date formatting
local p = {}

--local function 

function p.date( frame )
	local dtext = frame.args.text
	local dformat = frame.args.format or default
    return dtext
end

return p