aboutsummaryrefslogtreecommitdiff
path: root/src/client/Utils/Maybe.elm
blob: 507d9a4ce000290b68b771e1cfca7b73251ebdf4 (plain)
1
2
3
4
5
6
7
8
9
module Utils.Maybe
  ( isJust
  ) where

isJust : Maybe a -> Bool
isJust maybe =
  case maybe of
    Just _ -> True
    Nothing -> False