-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.js
410 lines (409 loc) · 9.7 KB
/
index.js
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
'use strict'
const abs = require('./src/abs')
const absDiff = require('./src/abs-diff')
const add = require('./src/add')
const adjustIndex = require('./src/adjust-index')
const and = require('./src/and')
const append = require('./src/append')
const appendTo = require('./src/append-to')
const apply = require('./src/apply')
const applyArgs = require('./src/apply-args')
const arity = require('./src/arity')
const array = require('./src/array')
const arrayify = require('./src/arrayify')
const arrayMax = require('./src/array-max')
const arrayMin = require('./src/array-min')
const arrayMinMax = require('./src/array-min-max')
const assign = require('./src/assign')
const assignWith = require('./src/assign-with')
const binary = require('./src/binary')
const bool = require('./src/bool')
const breakWhen = require('./src/break-when')
const ceil = require('./src/ceil')
const comp = require('./src/comp')
const concat = require('./src/concat')
const cons = require('./src/cons')
const copy = require('./src/copy')
const count = require('./src/count')
const countAll = require('./src/count-all')
const countBy = require('./src/count-by')
const countIn = require('./src/count-in')
const cube = require('./src/cube')
const curry = require('./src/curry')
const decr = require('./src/decr')
const div = require('./src/div')
const drop = require('./src/drop')
const dropRight = require('./src/drop-right')
const dropRightWhile = require('./src/drop-right-while')
const dropWhile = require('./src/drop-while')
const empty = require('./src/empty')
const endsWith = require('./src/ends-with')
const entries = require('./src/entries')
const eq = require('./src/eq')
const eqProp = require('./src/eq-prop')
const erase = require('./src/erase')
const even = require('./src/even')
const every = require('./src/every')
const excludes = require('./src/excludes')
const ext = require('./src/ext')
const F = require('./src/F')
const fact = require('./src/fact')
const fill = require('./src/fill')
const filter = require('./src/filter')
const find = require('./src/find')
const findIndex = require('./src/find-index')
const flatten = require('./src/flatten')
const flip = require('./src/flip')
const forEach = require('./src/for-each')
const Fs = require('./src/Fs')
const gather = require('./src/gather')
const gcd = require('./src/gcd')
const getNth = require('./src/get-nth')
const gt = require('./src/gt')
const gte = require('./src/gte')
const halve = require('./src/halve')
const hasProp = require('./src/has-prop')
const head = require('./src/head')
const id = require('./src/id')
const includes = require('./src/includes')
const incr = require('./src/incr')
const init = require('./src/init')
const insert = require('./src/insert')
const isArr = require('./src/is-arr')
const isDate = require('./src/is-date')
const isDef = require('./src/is-def')
const isEmpty = require('./src/is-empty')
const isFn = require('./src/is-fn')
const isInt = require('./src/is-num')
const isLower = require('./src/is-lower')
const isNeg = require('./src/is-neg')
const isNil = require('./src/is-nil')
const isNull = require('./src/is-null')
const isNum = require('./src/is-num')
const isObj = require('./src/is-obj')
const isPair = require('./src/is-pair')
const isPos = require('./src/is-pos')
const isRegExp = require('./src/is-reg-exp')
const isStr = require('./src/is-str')
const isUndef = require('./src/is-def')
const isUpper = require('./src/is-upper')
const ite = require('./src/ite')
const join = require('./src/join')
const keys = require('./src/keys')
const last = require('./src/last')
const lcm = require('./src/lcm')
const len = require('./src/len')
const lt = require('./src/lt')
const lte = require('./src/lte')
const map = require('./src/map')
const mapcat = require('./src/mapcat')
const max = require('./src/max')
const merge = require('./src/merge')
const mergeBy = require('./src/merge-by')
const min = require('./src/min')
const minMax = require('./src/min-max')
const mod = require('./src/mod')
const mult = require('./src/mult')
const nand = require('./src/nand')
const neg = require('./src/neg')
const none = require('./src/none')
const nor = require('./src/nor')
const not = require('./src/not')
const notArr = require('./src/not-arr')
const notDate = require('./src/not-date')
const notEmpty = require('./src/not-empty')
const notFn = require('./src/not-fn')
const notInt = require('./src/not-int')
const notLower = require('./src/not-lower')
const notNil = require('./src/not-nil')
const notNull = require('./src/not-null')
const notNum = require('./src/not-num')
const notObj = require('./src/not-obj')
const notPair = require('./src/not-pair')
const notRegExp = require('./src/not-reg-exp')
const notStr = require('./src/not-str')
const notUpper = require('./src/not-upper')
const nullary = require('./src/nullary')
const num = require('./src/num')
const odd = require('./src/odd')
const one = require('./src/one')
const ones = require('./src/ones')
const or = require('./src/or')
const pair = require('./src/pair')
const partial = require('./src/partial')
const partialRight = require('./src/partial-right')
const partition = require('./src/partition')
const partitionAt = require('./src/partition-at')
const pipe = require('./src/pipe')
const pow = require('./src/pow')
const prepend = require('./src/prepend')
const prependTo = require('./src/prepend-to')
const prod = require('./src/prod')
const props = require('./src/props')
const range = require('./src/range')
const recip = require('./src/recip')
const reduce = require('./src/reduce')
const reduceRight = require('./src/reduce-right')
const reject = require('./src/reject')
const remove = require('./src/remove')
const removeAll = require('./src/remove-all')
const removeRight = require('./src/remove-right')
const replace = require('./src/replace')
const replaceAll = require('./src/replace-all')
const reverse = require('./src/reverse')
const reverseArgs = require('./src/reverse-args')
const setHead = require('./src/set-head')
const setHeadWith = require('./src/set-head-with')
const setLast = require('./src/set-last')
const setLastWith = require('./src/set-last-with')
const setNth = require('./src/set-nth')
const setNthWith = require('./src/set-nth-with')
const shift = require('./src/shift')
const shiftLeft = require('./src/shift-left')
const slice = require('./src/slice')
const snd = require('./src/snd')
const some = require('./src/some')
const split = require('./src/split')
const spread = require('./src/spread')
const square = require('./src/square')
const startsWith = require('./src/starts-with')
const str = require('./src/str')
const sub = require('./src/sub')
const sum = require('./src/sum')
const swap = require('./src/swap')
const T = require('./src/T')
const tail = require('./src/tail')
const take = require('./src/take')
const takeRight = require('./src/take-right')
const takeRightWhile = require('./src/take-right-while')
const takeWhile = require('./src/take-while')
const ternary = require('./src/ternary')
const toLower = require('./src/to-lower')
const toUpper = require('./src/to-upper')
const trd = require('./src/trd')
const trunc = require('./src/trunc')
const Ts = require('./src/Ts')
const unary = require('./src/unary')
const uneq = require('./src/uneq')
const uneqProp = require('./src/uneq-prop')
const values = require('./src/values')
const xapply = require('./src/xapply')
const xarray = require('./src/xarray')
const xcurry = require('./src/xcurry')
const xnor = require('./src/xnor')
const xor = require('./src/xor')
const xshift = require('./src/xshift')
const xshiftLeft = require('./src/xshift-left')
const zero = require('./src/zero')
const zeros = require('./src/zeros')
const zip = require('./src/zip')
const zipObj = require('./src/zip-obj')
const zipReverse = require('./src/zip-reverse')
const zipSelf = require('./src/zip-self')
const zipTail = require('./src/zip-tail')
const zipWith = require('./src/zip-with')
module.exports = {
abs,
absDiff,
add,
adjustIndex,
and,
append,
appendTo,
apply,
applyArgs,
arity,
array,
arrayify,
arrayMax,
arrayMin,
arrayMinMax,
assign,
assignWith,
binary,
bool,
breakWhen,
ceil,
comp,
concat,
cons,
copy,
count,
countAll,
countBy,
countIn,
cube,
curry,
decr,
div,
drop,
dropRight,
dropRightWhile,
dropWhile,
empty,
endsWith,
entries,
eq,
eqProp,
erase,
even,
every,
excludes,
ext,
F,
fact,
fill,
filter,
find,
findIndex,
flatten,
flip,
forEach,
Fs,
gather,
gcd,
getNth,
gt,
gte,
halve,
hasProp,
head,
id,
includes,
incr,
init,
insert,
isArr,
isDate,
isDef,
isEmpty,
isFn,
isInt,
isLower,
isNeg,
isNil,
isNull,
isNum,
isObj,
isPair,
isPos,
isRegExp,
isStr,
isUndef,
isUpper,
ite,
join,
keys,
last,
lcm,
len,
lt,
lte,
map,
mapcat,
max,
merge,
mergeBy,
min,
minMax,
mod,
mult,
nand,
neg,
none,
nor,
not,
notArr,
notDate,
notEmpty,
notFn,
notInt,
notLower,
notNil,
notNull,
notNum,
notObj,
notPair,
notRegExp,
notStr,
notUpper,
nullary,
num,
odd,
one,
ones,
or,
pair,
partial,
partialRight,
partition,
partitionAt,
pipe,
pow,
prepend,
prependTo,
prod,
props,
range,
recip,
reduce,
reduceRight,
reject,
remove,
removeAll,
removeRight,
replace,
replaceAll,
reverse,
reverseArgs,
setHead,
setHeadWith,
setLast,
setLastWith,
setNth,
setNthWith,
shift,
shiftLeft,
slice,
snd,
some,
split,
spread,
square,
startsWith,
str,
sub,
sum,
swap,
T,
tail,
take,
takeRight,
takeRightWhile,
takeWhile,
ternary,
toLower,
toUpper,
trd,
trunc,
Ts,
unary,
uneq,
uneqProp,
values,
xapply,
xarray,
xcurry,
xnor,
xor,
xshift,
xshiftLeft,
zero,
zeros,
zip,
zipObj,
zipReverse,
zipSelf,
zipTail,
zipWith
}