Add addtional valid ISO8601 formats.
This commit is contained in:
parent
a537b980e6
commit
08c0962b40
@ -4,11 +4,14 @@ const zeroTime = fromUnix(0)
|
|||||||
const ISO_8601_FORMATS = @[
|
const ISO_8601_FORMATS = @[
|
||||||
"yyyy-MM-dd'T'HH:mm:ssz",
|
"yyyy-MM-dd'T'HH:mm:ssz",
|
||||||
"yyyy-MM-dd'T'HH:mm:sszzz",
|
"yyyy-MM-dd'T'HH:mm:sszzz",
|
||||||
"yyyy-MM-dd'T'HH:mm:ss'.'fffzzz"
|
"yyyy-MM-dd'T'HH:mm:ss'.'fffzzz",
|
||||||
|
"yyyy-MM-dd HH:mm:ssz",
|
||||||
|
"yyyy-MM-dd HH:mm:sszzz",
|
||||||
|
"yyyy-MM-dd HH:mm:ss'.'fffzzz"
|
||||||
]
|
]
|
||||||
|
|
||||||
proc format*(ti: TimeInterval, fmt: string): string =
|
proc format*(ti: TimeInterval, fmt: string): string =
|
||||||
let info = (fromUnix(0) + ti).utc
|
let info = (zeroTime + ti).utc
|
||||||
return info.format(fmt)
|
return info.format(fmt)
|
||||||
|
|
||||||
# Will be deprecated in Nim 0.18.1 as it will exist in the standard times module.
|
# Will be deprecated in Nim 0.18.1 as it will exist in the standard times module.
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
# Package
|
# Package
|
||||||
|
|
||||||
version = "0.5.0"
|
version = "0.5.1"
|
||||||
author = "Jonathan Bernard"
|
author = "Jonathan Bernard"
|
||||||
description = "Utility methods to fill in the lacking time support in Nim\'s stdlib. This is holding me over until I can write a proper time module for the stdlib and submit it."
|
description = "Utility methods to fill in the lacking time support in Nim\'s stdlib."
|
||||||
license = "BSD3"
|
license = "BSD3"
|
||||||
|
|
||||||
# Dependencies
|
# Dependencies
|
||||||
|
Loading…
x
Reference in New Issue
Block a user