5 lines
90 B
Haskell
5 lines
90 B
Haskell
cleanMaybe :: Maybe String -> [String]
|
|
cleanMaybe (Just x) = [x]
|
|
cleanMaybe Nothing = []
|
|
|