packages feed

api-monobank-0.1.0.0: src/Utils.hs

module Utils where


import qualified Data.Char as Char
import           Data.Text as T

-------------------------------------------------------------------


uncapFst :: String -> String
uncapFst (head:tail) = Char.toLower head : tail
uncapFst []          = []