Current section

Files

Jump to
calendar lib calendar naive_date_time format.ex
Raw

lib/calendar/naive_date_time/format.ex

defmodule Calendar.NaiveDateTime.Format do
alias Calendar.DateTime.Format.Strftime
alias Calendar.NaiveDateTime
@doc """
Format a naive datetime as "c time"
## Examples
iex> {{2015, 3, 3}, {7, 5, 3}} |> asctime
"Tue Mar 3 07:05:03 2015"
"""
def asctime(ndt) do
ndt
|> to_utc_dt
|> Strftime.strftime!("%c")
end
@doc """
Format a naive datetime as ISO 8601
## Examples
iex> {{2015, 4, 3}, {7, 5, 3}} |> iso8601
"2015-04-03T07:05:03"
"""
def iso8601(ndt) do
ndt
|> to_utc_dt
|> Strftime.strftime!("%FT%T")
end
defp to_utc_dt(ndt) do
ndt |> NaiveDateTime.to_date_time_utc
end
end