@ebflat9/fp
Advanced tools
Comparing version 1.1.1 to 1.1.2
321
index.js
@@ -1,6 +0,151 @@ | ||
import * as combinators from './src/combinators.js' | ||
import * as maybe from './src/maybe.js' | ||
import * as fetch from './src/fetch.js' | ||
import * as rx from './src/rx.js' | ||
import * as iterators from './src/iterators.js' | ||
import { | ||
accumulate, | ||
add, | ||
addRight, | ||
append, | ||
apply, | ||
arity, | ||
average, | ||
binary, | ||
bound, | ||
callFirst, | ||
callLast, | ||
compose, | ||
compose2, | ||
composeAsync, | ||
composeAsync2, | ||
composeM, | ||
composeM2, | ||
constant, | ||
curry, | ||
debounce, | ||
deepCopy, | ||
deepFreeze, | ||
deepMap, | ||
deepProp, | ||
demethodize, | ||
divide, | ||
divideRight, | ||
eq, | ||
every, | ||
filter, | ||
filterAsync, | ||
filterTR, | ||
find, | ||
flat, | ||
flatMap, | ||
flip, | ||
flip2, | ||
flip3, | ||
fold, | ||
forEach, | ||
fromJSON, | ||
FunctionalMixin, | ||
getOrElseThrow, | ||
head, | ||
identity, | ||
immutable, | ||
instanceEval, | ||
invert, | ||
invoke, | ||
isArray, | ||
isBoolean, | ||
isFunction, | ||
isInstanceOf, | ||
isMap, | ||
isNull, | ||
isNumber, | ||
isObject, | ||
isSet, | ||
isString, | ||
isTypeOf, | ||
last, | ||
len, | ||
liftA2, | ||
liftA3, | ||
liftA4, | ||
log, | ||
map, | ||
mapAsync, | ||
mapTR, | ||
match, | ||
maybe, | ||
memoize, | ||
multipy, | ||
multipyRight, | ||
not, | ||
once, | ||
padEnd, | ||
padStart, | ||
parse, | ||
partition, | ||
pipe, | ||
pipeAsync, | ||
pluck, | ||
pop, | ||
pow, | ||
prepend, | ||
prop, | ||
props, | ||
push, | ||
range, | ||
reduceAsync, | ||
reduceRight, | ||
replace, | ||
roundTo, | ||
send, | ||
setProp, | ||
setPropM, | ||
shift, | ||
some, | ||
sortBy, | ||
split, | ||
stringify, | ||
subtract, | ||
subtractRight, | ||
sum, | ||
tap, | ||
tee, | ||
ternary, | ||
toInteger, | ||
toJSON, | ||
toLowerCase, | ||
toString, | ||
toUpperCase, | ||
transduce, | ||
tryCatch, | ||
unary, | ||
unshift, | ||
zipMap, | ||
} from './src/combinators.js' | ||
import { | ||
Enum, | ||
Failure, | ||
IO, | ||
IOAsync, | ||
Just, | ||
Maybe, | ||
Nothing, | ||
Pair, | ||
Result, | ||
Success, | ||
Triple, | ||
Try, | ||
TryAsync, | ||
} from './src/maybe.js' | ||
import { createClient } from './src/fetch.js' | ||
import { | ||
mapWith, | ||
mapAllWith, | ||
filterWith, | ||
compact, | ||
untilWith, | ||
first, | ||
rest, | ||
take, | ||
zip, | ||
zipWith, | ||
reduceWith, | ||
memoizeIter, | ||
} from './src/iterators.js' | ||
import * as classes from './src/classes.js' | ||
@@ -11,12 +156,162 @@ import * as lazy from './src/lazy.js' | ||
import * as webStreams from './src/web-streams.js' | ||
import * as rx from './src/rx.js' | ||
export default { | ||
...combinators, | ||
...maybe, | ||
...fetch, | ||
...iterators, | ||
...classes, | ||
const { Observable } = rx.Observable | ||
export { | ||
accumulate, | ||
add, | ||
addRight, | ||
append, | ||
apply, | ||
arity, | ||
average, | ||
binary, | ||
bound, | ||
callFirst, | ||
callLast, | ||
classes, | ||
combinators, | ||
compact, | ||
compose, | ||
compose2, | ||
composeAsync, | ||
composeAsync2, | ||
composeM, | ||
composeM2, | ||
constant, | ||
createClient, | ||
curry, | ||
debounce, | ||
deepCopy, | ||
deepFreeze, | ||
deepMap, | ||
deepProp, | ||
demethodize, | ||
divide, | ||
divideRight, | ||
Enum, | ||
eq, | ||
every, | ||
Failure, | ||
filter, | ||
filterAsync, | ||
filterTR, | ||
filterWith, | ||
find, | ||
first, | ||
flat, | ||
flatMap, | ||
flip, | ||
flip2, | ||
flip3, | ||
fold, | ||
forEach, | ||
fromJSON, | ||
FunctionalMixin, | ||
getOrElseThrow, | ||
head, | ||
identity, | ||
immutable, | ||
instanceEval, | ||
invert, | ||
invoke, | ||
IO, | ||
IOAsync, | ||
isArray, | ||
isBoolean, | ||
isFunction, | ||
isInstanceOf, | ||
isMap, | ||
isNull, | ||
isNumber, | ||
isObject, | ||
isSet, | ||
isString, | ||
isTypeOf, | ||
Just, | ||
last, | ||
lazy, | ||
lazy, | ||
len, | ||
lens, | ||
lens, | ||
liftA2, | ||
liftA3, | ||
liftA4, | ||
log, | ||
map, | ||
mapAllWith, | ||
mapAsync, | ||
mapTR, | ||
mapWith, | ||
match, | ||
Maybe, | ||
maybe, | ||
memoize, | ||
memoizeIter, | ||
multipy, | ||
multipyRight, | ||
nodeStreams, | ||
nodeStreams, | ||
not, | ||
Nothing, | ||
Observable, | ||
once, | ||
padEnd, | ||
padStart, | ||
Pair, | ||
parse, | ||
partition, | ||
pipe, | ||
pipeAsync, | ||
pluck, | ||
pop, | ||
pow, | ||
prepend, | ||
prop, | ||
props, | ||
push, | ||
range, | ||
reduceAsync, | ||
reduceRight, | ||
reduceWith, | ||
replace, | ||
rest, | ||
Result, | ||
roundTo, | ||
rx, | ||
send, | ||
setProp, | ||
setPropM, | ||
shift, | ||
some, | ||
sortBy, | ||
split, | ||
stringify, | ||
subtract, | ||
subtractRight, | ||
Success, | ||
sum, | ||
take, | ||
tap, | ||
tee, | ||
ternary, | ||
toInteger, | ||
toJSON, | ||
toLowerCase, | ||
toString, | ||
toUpperCase, | ||
transduce, | ||
Triple, | ||
Try, | ||
TryAsync, | ||
tryCatch, | ||
unary, | ||
unshift, | ||
untilWith, | ||
webStreams, | ||
webStreams, | ||
zip, | ||
zipMap, | ||
zipWith, | ||
} | ||
export { combinators, fetch, rx, iterators, classes, lazy, lens, nodeStreams, webStreams } |
{ | ||
"name": "@ebflat9/fp", | ||
"version": "1.1.1", | ||
"version": "1.1.2", | ||
"description": "my fp utils", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
import { Maybe } from './maybe.js' | ||
import { curry } from './combinators.js' | ||
@@ -3,0 +4,0 @@ // Lenses |
52687
2093
1