packages feed

craft-0.0.0.1: src/Craft/Internal/Helpers/Parsing.hs

module Craft.Internal.Helpers.Parsing where

import           Control.Monad          (void)

import           Text.Megaparsec        hiding (parse)
import           Text.Megaparsec.String


end :: Parser ()
end = try (void $ lookAhead eol) <|> eof