Module:IUCDate:修订间差异
QWERTY 52 38(留言 | 贡献) 无编辑摘要 |
QWERTY 52 38(留言 | 贡献) 小无编辑摘要 |
||
第1行: | 第1行: | ||
local module = {} | local module = {} | ||
function module.test() | function module.test() | ||
local now = os.time() | local now = os.time() | ||
-- local start = os.time({year=2022,month=4,day=1,hour=22,minute=13}) | |||
-- local t = now-start | |||
return | return now | ||
end | |||
function module.isSpecialYear(year) | |||
-- 判断是否要减去1微 | |||
if (year % 4) then | |||
return true | |||
elseif ((year - 1) % 200) then | |||
return true | |||
else | |||
return false | |||
end | |||
end | end | ||
return module | return module |
2022年4月28日 (四) 17:29的版本
此模块的文档可以在Module:IUCDate/doc创建
local module = {}
function module.test()
local now = os.time()
-- local start = os.time({year=2022,month=4,day=1,hour=22,minute=13})
-- local t = now-start
return now
end
function module.isSpecialYear(year)
-- 判断是否要减去1微
if (year % 4) then
return true
elseif ((year - 1) % 200) then
return true
else
return false
end
end
return module