mirror of
https://github.com/lune-org/lune.git
synced 2024-12-12 13:00:37 +00:00
9 lines
225 B
Lua
9 lines
225 B
Lua
local DateTime = require("@lune/DateTime")
|
|
|
|
assert(
|
|
string.match(
|
|
DateTime.now():toIsoDate(),
|
|
"(%d%d%d%d)-?(%d?%d?)-?(%d?%d?)T(%d?%d?):(%d?%d?):(%d?%d?)Z$"
|
|
),
|
|
"invalid ISO 8601 date returned by dateTime.toIsoDate()"
|
|
)
|