-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.ts
53 lines (52 loc) · 1.11 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import either from './either.js'
import exhaustive from './exhaustive.js'
import exhaustiveResult from './exhaustive-result.js'
import exhaustiveUnion from './exhaustive-union.js'
import Invalid from './invalid.js'
import left from './left.js'
import literal from './literal.js'
import map from './map.js'
import maybe from './maybe.js'
import naive from './naive/index.js'
import pair from './pair.js'
import plus from './plus.js'
import predicate from './predicate.js'
import range from './range.js'
import regex from './regex.js'
import right from './right.js'
import separated from './separated.js'
import sequence from './sequence.js'
import star from './star.js'
import then from './then.js'
import times from './times.js'
import union from './union.js'
import whileChar from './while-char.js'
import ws0 from './ws0.js'
import ws1 from './ws1.js'
export default {
either,
exhaustive,
exhaustiveResult,
exhaustiveUnion,
Invalid,
left,
literal,
map,
maybe,
naive,
pair,
plus,
predicate,
range,
regex,
right,
sequence,
separated,
star,
then,
times,
union,
whileChar,
ws0,
ws1
}