module Misc where import Data.List (isInfixOf) -- | Specializes Data.List.isInfixOf. contains :: String -> String -> Bool contains = isInfixOf