View source for Module:TimeSpan
From Melvor Idle
You do not have permission to edit this page, for the following reason:
You can view and copy the source of this page.
local TimeSpan = {}
-- Metatable to make instances of TimeSpan readonly
local TimeSpan_mt = {
__index = TimeSpan,
__newindex = function()
error("Attempt to modify readonly TimeSpan", 2)
end
}
local MillisecondsPerSecond = 1000
local MillisecondsPerMinute = 60000
local MillisecondsPerHour = 3600000
local MillisecondsPerDay = 86400000
local SecondsPerMinute = 60
local SecondsPerHour = 3600
local SecondsPerDay = 86400
local MinutesPerHour = 60
000
1:0
Template used on this page:
Return to Module:TimeSpan.