Module:Date Stuff

Revision as of 12:51, 5 July 2021 by Maxwells (talk | contribs)

Documentation for this module may be created at Module:Date Stuff/doc

local p = {}
local args = {}

--Takes a string and splits it based on a specified delimiter
function Split(s, delimiter)
    result = {};
    for match in (s..delimiter):gmatch("(.-)"..delimiter) do
        table.insert(result, match);
    end
    return result;
end

function p.test(date2)
  return date2
end

return p[1]