1 | /**
|
---|
2 | * @namespace RA
|
---|
3 | */
|
---|
4 |
|
---|
5 | // Type
|
---|
6 | export { default as isNotUndefined } from './isNotUndefined';
|
---|
7 | export { default as isUndefined } from './isUndefined';
|
---|
8 | export { default as isNull } from './isNull';
|
---|
9 | export { default as isNotNull } from './isNotNull';
|
---|
10 | export { default as isNotNil } from './isNotNil';
|
---|
11 | export { default as isArray } from './isArray';
|
---|
12 | export { default as isIterable } from './isIterable';
|
---|
13 | export { default as isEmptyArray } from './isEmptyArray';
|
---|
14 | export { default as isNotArray } from './isNotArray';
|
---|
15 | export { default as isNonEmptyArray } from './isNonEmptyArray';
|
---|
16 | export { default as isBoolean } from './isBoolean';
|
---|
17 | export { default as isNotBoolean } from './isNotBoolean';
|
---|
18 | export { default as isNilOrEmpty } from './isNilOrEmpty';
|
---|
19 | export { default as isString } from './isString';
|
---|
20 | export { default as isEmptyString } from './isEmptyString';
|
---|
21 | export { default as isNotString } from './isNotString';
|
---|
22 | export { default as isNonEmptyString } from './isNonEmptyString';
|
---|
23 | export { default as isArrayLike } from './isArrayLike';
|
---|
24 | export { default as isNotArrayLike } from './isNotArrayLike';
|
---|
25 | export { default as isGeneratorFunction } from './isGeneratorFunction';
|
---|
26 | export { default as isNotGeneratorFunction } from './isNotGeneratorFunction';
|
---|
27 | export { default as isAsyncFunction } from './isAsyncFunction';
|
---|
28 | export { default as isNotAsyncFunction } from './isNotAsyncFunction';
|
---|
29 | export { default as isFunction } from './isFunction';
|
---|
30 | export { default as isNotFunction } from './isNotFunction';
|
---|
31 | export { default as isObj } from './isObj';
|
---|
32 | export { default as isObject } from './isObj'; // alias of isObj
|
---|
33 | export { default as isNotObj } from './isNotObj';
|
---|
34 | export { default as isNotObject } from './isNotObj'; // alias of isNotObj
|
---|
35 | export { default as isObjLike } from './isObjLike';
|
---|
36 | export { default as isObjectLike } from './isObjLike'; // alias of isObjLike
|
---|
37 | export { default as isNotObjLike } from './isNotObjLike';
|
---|
38 | export { default as isNotObjectLike } from './isNotObjLike'; // alias of isNotObjLike
|
---|
39 | export { default as isPlainObj } from './isPlainObj';
|
---|
40 | export { default as isPlainObject } from './isPlainObj';
|
---|
41 | export { default as isNotPlainObj } from './isNotPlainObj';
|
---|
42 | export { default as isNotPlainObject } from './isNotPlainObj'; // alias of isNotPlainObj
|
---|
43 | export { default as isDate } from './isDate';
|
---|
44 | export { default as isNotDate } from './isNotDate';
|
---|
45 | export { default as isValidDate } from './isValidDate';
|
---|
46 | export { default as isNotValidDate } from './isNotValidDate';
|
---|
47 | export { default as isInvalidDate } from './isNotValidDate'; // alias of isNotValidDate
|
---|
48 | export { default as isNumber } from './isNumber';
|
---|
49 | export { default as isNotNumber } from './isNotNumber';
|
---|
50 | export { default as isPositive } from './isPositive';
|
---|
51 | export { default as isNegative } from './isNegative';
|
---|
52 | export { default as isPositiveZero } from './isPositiveZero';
|
---|
53 | export { default as isNegativeZero } from './isNegativeZero';
|
---|
54 | export { default as isNotNilOrEmpty } from './isNotNilOrEmpty';
|
---|
55 | export { default as isNonPositive } from './isNonPositive';
|
---|
56 | export { default as isNonNegative } from './isNonNegative';
|
---|
57 | export { default as isMap } from './isMap';
|
---|
58 | export { default as isNotMap } from './isNotMap';
|
---|
59 | export { default as isNaN } from './isNaN';
|
---|
60 | export { default as isNotNaN } from './isNotNaN';
|
---|
61 | export { default as isFinite } from './isFinite';
|
---|
62 | export { default as isNotFinite } from './isNotFinite';
|
---|
63 | export { default as isInteger } from './isInteger';
|
---|
64 | export { default as isInteger32 } from './isInteger32';
|
---|
65 | export { default as isInt32 } from './isInteger32'; // alias of isInteger32
|
---|
66 | export { default as isUinteger32 } from './isUinteger32';
|
---|
67 | export { default as isUint32 } from './isUinteger32'; // alias of isUinteger32
|
---|
68 | export { default as isNotInteger } from './isNotInteger';
|
---|
69 | export { default as isBigInt } from './isBigInt';
|
---|
70 | export { default as isFloat } from './isFloat';
|
---|
71 | export { default as isNotFloat } from './isNotFloat';
|
---|
72 | export { default as isValidNumber } from './isValidNumber';
|
---|
73 | export { default as isNotValidNumber } from './isNotValidNumber';
|
---|
74 | export { default as isOdd } from './isOdd';
|
---|
75 | export { default as isEven } from './isEven';
|
---|
76 | export { default as isPair } from './isPair';
|
---|
77 | export { default as isNotPair } from './isNotPair';
|
---|
78 | export { default as isThenable } from './isThenable';
|
---|
79 | export { default as isPromise } from './isPromise';
|
---|
80 | export { default as isTrue } from './isTrue';
|
---|
81 | export { default as isFalse } from './isFalse';
|
---|
82 | export { default as isTruthy } from './isTruthy';
|
---|
83 | export { default as isFalsy } from './isFalsy';
|
---|
84 | export { default as isRegExp } from './isRegExp';
|
---|
85 | export { default as isNotRegExp } from './isNotRegExp';
|
---|
86 | export { default as isSet } from './isSet';
|
---|
87 | export { default as isNotSet } from './isNotSet';
|
---|
88 | export { default as isSparseArray } from './isSparseArray';
|
---|
89 | export { default as isSymbol } from './isSymbol';
|
---|
90 | export { default as isSafeInteger } from './isSafeInteger';
|
---|
91 | export { default as isIndexed } from './isIndexed';
|
---|
92 | export { default as isError } from './isError';
|
---|
93 | export { default as isNaturalNumber } from './isNaturalNumber';
|
---|
94 | export { default as isPrimitive } from './isPrimitive';
|
---|
95 | export { default as isNotPrimitive } from './isNotPrimitive';
|
---|
96 | export { default as isSentinelValue } from './isSentinelValue';
|
---|
97 | export { default as isBlank } from './isBlank';
|
---|
98 | // Function
|
---|
99 | export { default as stubUndefined } from './stubUndefined';
|
---|
100 | export { default as stubNull } from './stubNull';
|
---|
101 | export { default as stubObj } from './stubObj';
|
---|
102 | export { default as stubObject } from './stubObj';
|
---|
103 | export { default as stubString } from './stubString';
|
---|
104 | export { default as stubArray } from './stubArray';
|
---|
105 | export { default as noop } from './noop';
|
---|
106 | export { default as liftFN } from './liftFN';
|
---|
107 | export { default as liftF } from './liftF';
|
---|
108 | export { default as cata } from './cata';
|
---|
109 | export { default as weave } from './weave';
|
---|
110 | export { default as weaveLazy } from './weaveLazy';
|
---|
111 | export { default as curryRightN } from './curryRightN';
|
---|
112 | export { default as curryRight } from './curryRight';
|
---|
113 | export { default as allP } from './allP';
|
---|
114 | export { default as catchP } from './catchP';
|
---|
115 | export { default as noneP } from './noneP';
|
---|
116 | export { default as resolveP } from './resolveP';
|
---|
117 | export { default as rejectP } from './rejectP';
|
---|
118 | export { default as delayP } from './delayP';
|
---|
119 | export { default as thenCatchP } from './thenCatchP';
|
---|
120 | export { default as allSettledP } from './allSettledP';
|
---|
121 | export { default as Y } from './Y';
|
---|
122 | export { default as seq } from './seq';
|
---|
123 | export { default as sequencing } from './seq';
|
---|
124 | export { default as dispatch } from './dispatch';
|
---|
125 | export { default as async } from './async';
|
---|
126 | export { default as anyP } from './anyP';
|
---|
127 | export { default as firstP } from './anyP'; // alias of anyP
|
---|
128 | export { default as lastP } from './lastP';
|
---|
129 | export { default as fnull } from './fnull';
|
---|
130 | // List
|
---|
131 | export { default as mapIndexed } from './mapIndexed';
|
---|
132 | export { default as reduceIndexed } from './reduceIndexed';
|
---|
133 | export { default as filterIndexed } from './filterIndexed';
|
---|
134 | export { default as pickIndexes } from './pickIndexes';
|
---|
135 | export { default as list } from './list';
|
---|
136 | export { default as ensureArray } from './ensureArray';
|
---|
137 | export { default as concatAll } from './concatAll';
|
---|
138 | export { default as concatRight } from './concatRight';
|
---|
139 | export { default as reduceP } from './reduceP';
|
---|
140 | export { default as reduceRightP } from './reduceRightP';
|
---|
141 | export { default as sliceFrom } from './sliceFrom';
|
---|
142 | export { default as sliceTo } from './sliceTo';
|
---|
143 | export { default as omitIndexes } from './omitIndexes';
|
---|
144 | export { default as compact } from './compact';
|
---|
145 | export { default as appendFlipped } from './appendFlipped';
|
---|
146 | export { default as included } from './included';
|
---|
147 | export { default as move } from './move';
|
---|
148 | export { default as lengthGt } from './lengthGt';
|
---|
149 | export { default as lengthLt } from './lengthLt';
|
---|
150 | export { default as lengthGte } from './lengthGte';
|
---|
151 | export { default as lengthLte } from './lengthLte';
|
---|
152 | export { default as lengthEq } from './lengthEq';
|
---|
153 | export { default as lengthNotEq } from './lengthNotEq';
|
---|
154 | export { default as allEqual } from './allEqual';
|
---|
155 | export { default as repeatStr } from './repeatStr';
|
---|
156 | export { default as allIdentical } from './allIdentical';
|
---|
157 | export { default as allIdenticalTo } from './allIdenticalTo';
|
---|
158 | export { default as allEqualTo } from './allEqualTo';
|
---|
159 | export { default as flattenDepth } from './flattenDepth';
|
---|
160 | export { default as toArray } from './toArray';
|
---|
161 | export { default as allUnique } from './allUnique';
|
---|
162 | export { default as notAllUnique } from './notAllUnique';
|
---|
163 | export { default as sortByProps } from './sortByProps';
|
---|
164 | export { default as sortByProp } from './sortByProp';
|
---|
165 | export { default as sortByPaths } from './sortByPaths';
|
---|
166 | export { default as skipTake } from './skipTake';
|
---|
167 | export { default as rangeStep } from './rangeStep';
|
---|
168 | export { default as findOr } from './findOr';
|
---|
169 | // Object
|
---|
170 | export { default as invoke } from './invoke';
|
---|
171 | export { default as invokeArgs } from './invokeArgs';
|
---|
172 | export { default as paths } from './paths';
|
---|
173 | export { default as renameKey } from './renameKey';
|
---|
174 | export { default as renameKeys } from './renameKeys';
|
---|
175 | export { default as renameKeysWith } from './renameKeysWith';
|
---|
176 | export { default as renameKeyWith } from './renameKeyWith';
|
---|
177 | export { default as copyKeys } from './copyKeys';
|
---|
178 | export { default as mergeProps } from './mergeProps';
|
---|
179 | export { default as mergePaths } from './mergePaths';
|
---|
180 | export { default as mergeProp } from './mergeProp';
|
---|
181 | export { default as mergePath } from './mergePath';
|
---|
182 | export { default as omitBy } from './omitBy';
|
---|
183 | export { default as pathOrLazy } from './pathOrLazy';
|
---|
184 | export { default as viewOr } from './viewOr';
|
---|
185 | export { default as spreadProp } from './spreadProp';
|
---|
186 | export { default as spreadPath } from './spreadPath';
|
---|
187 | export { default as flattenProp } from './flattenProp';
|
---|
188 | export { default as flattenPath } from './flattenPath';
|
---|
189 | export { default as unzipObjWith } from './unzipObjWith';
|
---|
190 | export { default as zipObjWith } from './zipObjWith';
|
---|
191 | export { default as isPrototypeOf } from './isPrototypeOf';
|
---|
192 | // Relation
|
---|
193 | export { default as lensEq } from './lensEq';
|
---|
194 | export { default as lensNotEq } from './lensNotEq';
|
---|
195 | export { default as lensSatisfies } from './lensSatisfies';
|
---|
196 | export { default as lensNotSatisfy } from './lensNotSatisfy';
|
---|
197 | export { default as lensTraverse } from './lensTraverse';
|
---|
198 | export { default as lensIso } from './lensIso';
|
---|
199 | export { default as propNotEq } from './propNotEq';
|
---|
200 | export { default as pathNotEq } from './pathNotEq';
|
---|
201 | export { default as inRange } from './inRange';
|
---|
202 | export { default as notEqual } from './notEqual';
|
---|
203 | export { default as overlaps } from './overlaps';
|
---|
204 | // Logic
|
---|
205 | export { default as isNotEmpty } from './isNotEmpty';
|
---|
206 | export { default as defaultWhen } from './defaultWhen';
|
---|
207 | export { default as notBoth } from './notBoth';
|
---|
208 | export { default as nand } from './nand';
|
---|
209 | export { default as neither } from './neither';
|
---|
210 | export { default as nor } from './nor';
|
---|
211 | export { default as notAllPass } from './notAllPass';
|
---|
212 | export { default as nonePass } from './nonePass';
|
---|
213 | export { default as argsPass } from './argsPass';
|
---|
214 | export { default as dropArgs } from './dropArgs';
|
---|
215 | // Math
|
---|
216 | export { default as round } from './round';
|
---|
217 | export { default as ceil } from './ceil';
|
---|
218 | export { default as divideNum } from './divideNum';
|
---|
219 | export { default as floor } from './floor';
|
---|
220 | export { default as trunc } from './trunc';
|
---|
221 | export { default as sign } from './sign';
|
---|
222 | export { default as subtractNum } from './subtractNum';
|
---|
223 | export { default as toInteger32 } from './toInteger32';
|
---|
224 | export { default as toInt32 } from './toInteger32'; // alias of toInteger32
|
---|
225 | export { default as toUinteger32 } from './toUinteger32';
|
---|
226 | export { default as toUint32 } from './toUinteger32'; // alias of to toUinteger32
|
---|
227 | export { default as toNumber } from './toNumber';
|
---|
228 | // String
|
---|
229 | export { default as replaceAll } from './replaceAll';
|
---|
230 | export { default as escapeRegExp } from './escapeRegExp';
|
---|
231 | export { default as trimStart } from './trimStart';
|
---|
232 | export { default as trimLeft } from './trimStart'; // alias of trimStart
|
---|
233 | export { default as trimEnd } from './trimEnd';
|
---|
234 | export { default as trimRight } from './trimEnd'; // alias of trimEnd
|
---|
235 | export { default as trimCharsEnd } from './trimCharsEnd';
|
---|
236 | export { default as trimCharsStart } from './trimCharsStart';
|
---|
237 | export { default as padCharsStart } from './padCharsStart';
|
---|
238 | export { default as padCharsEnd } from './padCharsEnd';
|
---|
239 | export { default as padEnd } from './padEnd';
|
---|
240 | export { default as padStart } from './padStart';
|
---|
241 | // Types
|
---|
242 | export { default as Identity } from './fantasy-land/Identity';
|
---|