This repository was archived by the owner on Feb 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 156
/
Copy pathpublic_api.ts
102 lines (96 loc) · 3.68 KB
/
public_api.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
export * from './pipes.module';
export * from './aggregate/aggregate.module';
export * from './array/array.module';
export * from './boolean/boolean.module';
export * from './math/math.module';
export * from './object/object.module';
export * from './string/string.module';
export * from './aggregate/group-by.pipe';
export * from './aggregate/max.pipe';
export * from './aggregate/mean.pipe';
export * from './aggregate/min.pipe';
export * from './aggregate/sum.pipe';
export * from './array/empty.pipe';
export * from './array/head.pipe';
export * from './array/initial.pipe';
export * from './array/last.pipe';
export * from './array/join.pipe';
export * from './array/tail.pipe';
export * from './array/uniq.pipe';
export * from './array/without.pipe';
export * from './array/map.pipe';
export * from './array/where.pipe';
export * from './array/first-or-default.pipe';
export * from './array/range.pipe';
export * from './array/pluck.pipe';
export * from './array/reverse.pipe';
export * from './array/order-by.pipe';
export * from './array/count.pipe';
export * from './array/some.pipe';
export * from './array/every.pipe';
export * from './array/shuffle.pipe';
export * from './array/take.pipe';
export * from './array/drop.pipe';
export * from './array/deep.pipe';
export * from './array/chunk.pipe';
export * from './array/flatten.pipe';
export * from './array/intersection.pipe';
export * from './array/union.pipe';
export * from './array/take-while.pipe';
export * from './array/take-until.pipe';
export * from './boolean/is-equal.pipe';
export * from './boolean/is-greater-or-equal.pipe';
export * from './boolean/is-greater.pipe';
export * from './boolean/is-identical.pipe';
export * from './boolean/is-less-or-equal.pipe';
export * from './boolean/is-less.pipe';
export * from './boolean/is-not-equal.pipe';
export * from './boolean/is-not-identical.pipe';
export * from './boolean/is-null.pipe';
export * from './boolean/is-undefined.pipe';
export * from './boolean/is-nil.pipe';
export * from './boolean/is-function.pipe';
export * from './boolean/is-number.pipe';
export * from './boolean/is-string.pipe';
export * from './boolean/is-array.pipe';
export * from './boolean/is-object.pipe';
export * from './boolean/is-defined.pipe';
export * from './math/bytes.pipe';
export * from './math/ceil.pipe';
export * from './math/floor.pipe';
export * from './math/round.pipe';
export * from './math/degrees.pipe';
export * from './math/radians.pipe';
export * from './math/random.pipe';
export * from './math/sqrt.pipe';
export * from './math/pow.pipe';
export * from './math/abs.pipe';
export * from './math/ordinal.pipe';
export * from './object/keys.pipe';
export * from './object/to-array.pipe';
export * from './object/defaults.pipe';
export * from './object/to-key-value-pairs';
export * from './string/left-pad.pipe';
export * from './string/match.pipe';
export * from './string/pad.pipe';
export * from './string/replace.pipe';
export * from './string/right-pad.pipe';
export * from './string/split.pipe';
export * from './string/test.pipe';
export * from './string/trim.pipe';
export * from './string/newlines.pipe';
export * from './string/capitalize.pipe';
export * from './string/upperfirst.pipe';
export * from './string/template.pipe';
export * from './string/encode-uri.pipe';
export * from './string/encode-uri-component.pipe';
export * from './string/decode-uri.pipe';
export * from './string/decode-uri-component.pipe';
export * from './string/truncate.pipe';
export * from './string/repeat.pipe';
export * from './string/slugify.pipe';
export * from './string/strip-tags.pipe';
export * from './string/latinize.pipe';
export * from './string/wrap.pipe';
export * from './string/with.pipe';
export * from './string/reverse-str.pipe';