Remove unused function from Glob.

This commit is contained in:
Dillon Kearns 2021-05-28 12:28:08 -07:00
parent 63bcae4877
commit d2a9e18346
2 changed files with 1 additions and 8 deletions

File diff suppressed because one or more lines are too long

View File

@ -7,7 +7,6 @@ module DataSource.Glob exposing
, expectUniqueMatch
, literal
, atLeastOne, map, oneOf, succeed, toDataSource, zeroOrMore
, toNonEmptyWithDefault
)
{-|
@ -203,11 +202,6 @@ That will give us
@docs atLeastOne, map, oneOf, succeed, toDataSource, zeroOrMore
## Is this useful/used?
@docs toNonEmptyWithDefault
-}
import DataSource exposing (DataSource)
@ -841,7 +835,6 @@ atLeastOne ( defaultMatch, otherMatchers ) =
)
{-| -}
toNonEmptyWithDefault : a -> List a -> ( a, List a )
toNonEmptyWithDefault default list =
case list of