source: node_modules/ramda-adjunct/src/index.js@ d24f17c

main
Last change on this file since d24f17c was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

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