aboutsummaryrefslogtreecommitdiff
path: root/src/client/elm/Utils/Date.elm
diff options
context:
space:
mode:
authorJoris2016-06-12 23:54:17 +0200
committerJoris2016-06-12 23:54:17 +0200
commit6a0c5087f716ed6c876a666db6573491bfd3e094 (patch)
treebf439109143c7a1749c2661fc8b805b83a993027 /src/client/elm/Utils/Date.elm
parent38896af4281d2e191cbde15836a23e4c0274fff6 (diff)
downloadbudget-6a0c5087f716ed6c876a666db6573491bfd3e094.tar.gz
budget-6a0c5087f716ed6c876a666db6573491bfd3e094.tar.bz2
budget-6a0c5087f716ed6c876a666db6573491bfd3e094.zip
Design income form
Diffstat (limited to 'src/client/elm/Utils/Date.elm')
-rw-r--r--src/client/elm/Utils/Date.elm39
1 files changed, 0 insertions, 39 deletions
diff --git a/src/client/elm/Utils/Date.elm b/src/client/elm/Utils/Date.elm
deleted file mode 100644
index 352e4ce..0000000
--- a/src/client/elm/Utils/Date.elm
+++ /dev/null
@@ -1,39 +0,0 @@
-module Utils.Date exposing
- ( monthToNum
- , numToMonth
- )
-
-import Date exposing (..)
-
-monthToNum : Month -> Int
-monthToNum month =
- case month of
- Jan -> 1
- Feb -> 2
- Mar -> 3
- Apr -> 4
- May -> 5
- Jun -> 6
- Jul -> 7
- Aug -> 8
- Sep -> 9
- Oct -> 10
- Nov -> 11
- Dec -> 12
-
-numToMonth : Int -> Month
-numToMonth n =
- case n of
- 1 -> Jan
- 2 -> Feb
- 3 -> Mar
- 4 -> Apr
- 5 -> May
- 6 -> Jun
- 7 -> Jul
- 8 -> Aug
- 9 -> Sep
- 10 -> Oct
- 11 -> Nov
- 12 -> Dec
- _ -> Jan