summaryrefslogtreecommitdiffstats
path: root/src/Data/Text/Extra.hs
blob: 07dd45c6383807ba4b909c4a802eda2a4c435794 (plain)
1
2
3
4
5
6
7
8
module Data.Text.Extra where

import Data.Text (Text)
import qualified Data.Text as Text


show :: Show a => a -> Text
show = Text.pack . Prelude.show