Jump to content

Module:Systime: Difference between revisions

m
Fix output ternary operator.
m (Implement toTimestamp.)
m (Fix output ternary operator.)
Line 30: Line 30:
time = os.time({year = year, month = month ~= "" and month or 1, day = day ~= "" and day or 1, hour = hour, min = min, sec = sec})
time = os.time({year = year, month = month ~= "" and month or 1, day = day ~= "" and day or 1, hour = hour, min = min, sec = sec})


return hour ~= "" and os.date("%H:%M ", time) .. month ~= "" and day ~= "" and os.date("%d %B %Y", time) or os.date("%Y", time)
return hour ~= "" and os.date("%H:%M ", time) or "" .. month ~= "" and day ~= "" and os.date("%d %B %Y", time) or os.date("%Y", time)
end
end


return p
return p