json-autotype-1.1.0: Data/Aeson/AutoType/Format.hs
-- | Formatting tools for code generation.
module Data.Aeson.AutoType.Format(capitalize, uncapitalize) where
import Data.Text(Text)
import qualified Data.Text as Text
-- | Make the first letter of a Text upper case.
capitalize :: Text -> Text
capitalize word = Text.toUpper first `Text.append` rest
where
(first, rest) = Text.splitAt 1 word
-- | Make the first letter of a Text lower case.
uncapitalize :: Text -> Text
uncapitalize word = Text.toLower first `Text.append` rest
where
(first, rest) = Text.splitAt 1 word