mirror of
https://github.com/correl/elm.git
synced 2024-11-16 19:19:28 +00:00
14 lines
196 B
Text
14 lines
196 B
Text
module Gigasecond exposing (add)
|
|
|
|
import Date
|
|
import Time
|
|
|
|
|
|
add : Date.Date -> Date.Date
|
|
add =
|
|
Date.toTime >> (+) gigasecond >> Date.fromTime
|
|
|
|
|
|
gigasecond : Time.Time
|
|
gigasecond =
|
|
10 ^ 12
|