Expose digits helper.

This commit is contained in:
Dillon Kearns 2021-05-28 12:26:22 -07:00
parent 5810306386
commit 63bcae4877
2 changed files with 9 additions and 3 deletions

File diff suppressed because one or more lines are too long

View File

@ -2,7 +2,8 @@ module DataSource.Glob exposing
( Glob ( Glob
, capture, match , capture, match
, captureFilePath , captureFilePath
, wildcard, recursiveWildcard, int , wildcard, recursiveWildcard
, int, digits
, expectUniqueMatch , expectUniqueMatch
, literal , literal
, atLeastOne, map, oneOf, succeed, toDataSource, zeroOrMore , atLeastOne, map, oneOf, succeed, toDataSource, zeroOrMore
@ -183,7 +184,12 @@ That will give us
## Capturing Patterns ## Capturing Patterns
@docs wildcard, recursiveWildcard, int @docs wildcard, recursiveWildcard
## Capturing Specific Characters
@docs int, digits
## Matching a Specific Number of Files ## Matching a Specific Number of Files