Skip to content

Commit 02376e8

Browse files
committed
Export noFlags
1 parent a9a1fc6 commit 02376e8

File tree

2 files changed

+19
-14
lines changed

2 files changed

+19
-14
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,10 @@
174174

175175
match :: Regex -> String -> Maybe [String]
176176

177+
#### `noFlags`
178+
179+
noFlags :: RegexFlags
180+
177181
#### `parseFlags`
178182

179183
parseFlags :: String -> RegexFlags

src/Data/String/Regex.purs

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
1-
module Data.String.Regex (
2-
Regex(..),
3-
RegexFlags(..),
4-
regex,
5-
source,
6-
flags,
7-
renderFlags,
8-
parseFlags,
9-
test,
10-
match,
11-
replace,
12-
replace',
13-
search,
14-
split
1+
module Data.String.Regex
2+
( Regex(..)
3+
, RegexFlags(..)
4+
, regex
5+
, source
6+
, flags
7+
, renderFlags
8+
, parseFlags
9+
, test
10+
, match
11+
, replace
12+
, replace'
13+
, search
14+
, split
15+
, noFlags
1516
) where
1617

1718
import Data.Function

0 commit comments

Comments
 (0)