ramda-adjunct 2.34.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.nvmrc +1 -0
- package/CHANGELOG.md +973 -0
- package/LICENSE.md +25 -0
- package/README.md +297 -0
- package/SECURITY.md +43 -0
- package/dist/RA.node.js +11172 -0
- package/dist/RA.node.min.js +2 -0
- package/dist/RA.node.min.js.LICENSE.txt +22 -0
- package/dist/RA.web.js +11172 -0
- package/dist/RA.web.min.js +2 -0
- package/dist/RA.web.min.js.LICENSE.txt +22 -0
- package/dist/RA.web.standalone.js +27797 -0
- package/dist/RA.web.standalone.min.js +2 -0
- package/dist/RA.web.standalone.min.js.LICENSE.txt +22 -0
- package/es/Y.js +38 -0
- package/es/allEqual.js +25 -0
- package/es/allEqualTo.js +26 -0
- package/es/allIdentical.js +24 -0
- package/es/allIdenticalTo.js +26 -0
- package/es/allP.js +26 -0
- package/es/allSettledP.js +29 -0
- package/es/allUnique.js +23 -0
- package/es/anyP.js +28 -0
- package/es/appendFlipped.js +23 -0
- package/es/argsPass.js +38 -0
- package/es/async.js +57 -0
- package/es/cata.js +101 -0
- package/es/catchP.js +24 -0
- package/es/ceil.js +26 -0
- package/es/compact.js +21 -0
- package/es/concatAll.js +30 -0
- package/es/concatRight.js +29 -0
- package/es/contained.js +29 -0
- package/es/curryRight.js +24 -0
- package/es/curryRightN.js +32 -0
- package/es/defaultWhen.js +25 -0
- package/es/delayP.js +44 -0
- package/es/dispatch.js +75 -0
- package/es/divideNum.js +19 -0
- package/es/dropArgs.js +22 -0
- package/es/ensureArray.js +22 -0
- package/es/escapeRegExp.js +20 -0
- package/es/fantasy-land/Identity.js +309 -0
- package/es/fantasy-land/mapping.js +20 -0
- package/es/fantasy-land/traits.js +41 -0
- package/es/fantasy-land/util.js +11 -0
- package/es/filterIndexed.js +27 -0
- package/es/findOr.js +28 -0
- package/es/flattenDepth.js +50 -0
- package/es/flattenPath.js +27 -0
- package/es/flattenProp.js +28 -0
- package/es/floor.js +25 -0
- package/es/fnull.js +37 -0
- package/es/hasPath.js +38 -0
- package/es/inRange.js +29 -0
- package/es/index.js +252 -0
- package/es/internal/ap.js +20 -0
- package/es/internal/compareLength.js +5 -0
- package/es/internal/isOfTypeObject.js +7 -0
- package/es/internal/makeFlat.js +46 -0
- package/es/internal/ponyfills/Array.from.js +40 -0
- package/es/internal/ponyfills/Math.sign.js +5 -0
- package/es/internal/ponyfills/Math.trunc.js +14 -0
- package/es/internal/ponyfills/Number.MAX_SAFE_INTEGER.js +2 -0
- package/es/internal/ponyfills/Number.MIN_SAFE_INTEGER.js +2 -0
- package/es/internal/ponyfills/Number.isFinite.js +5 -0
- package/es/internal/ponyfills/Number.isInteger.js +4 -0
- package/es/internal/ponyfills/Number.isNaN.js +5 -0
- package/es/internal/ponyfills/Number.isSafeInteger.js +7 -0
- package/es/internal/ponyfills/Promise.allSettled.js +38 -0
- package/es/internal/ponyfills/Promise.any.js +77 -0
- package/es/internal/ponyfills/String.padEnd.js +24 -0
- package/es/internal/ponyfills/String.padStart.js +26 -0
- package/es/internal/ponyfills/String.repeat.js +46 -0
- package/es/internal/ponyfills/String.replaceAll.js +34 -0
- package/es/internal/ponyfills/String.trimEnd.js +3 -0
- package/es/internal/ponyfills/String.trimStart.js +3 -0
- package/es/invoke.js +20 -0
- package/es/invokeArgs.js +30 -0
- package/es/isArray.js +22 -0
- package/es/isArrayLike.js +87 -0
- package/es/isAsyncFunction.js +22 -0
- package/es/isBigInt.js +23 -0
- package/es/isBoolean.js +21 -0
- package/es/isDate.js +20 -0
- package/es/isEmptyArray.js +26 -0
- package/es/isEmptyString.js +27 -0
- package/es/isError.js +20 -0
- package/es/isEven.js +29 -0
- package/es/isFalse.js +29 -0
- package/es/isFalsy.js +26 -0
- package/es/isFinite.js +33 -0
- package/es/isFloat.js +34 -0
- package/es/isFunction.js +26 -0
- package/es/isGeneratorFunction.js +33 -0
- package/es/isIndexed.js +21 -0
- package/es/isInteger.js +35 -0
- package/es/isInteger32.js +28 -0
- package/es/isIterable.js +33 -0
- package/es/isMap.js +23 -0
- package/es/isNaN.js +41 -0
- package/es/isNaturalNumber.js +25 -0
- package/es/isNegative.js +25 -0
- package/es/isNegativeZero.js +22 -0
- package/es/isNilOrEmpty.js +25 -0
- package/es/isNonEmptyArray.js +27 -0
- package/es/isNonEmptyString.js +30 -0
- package/es/isNonNegative.js +28 -0
- package/es/isNonPositive.js +28 -0
- package/es/isNotArray.js +22 -0
- package/es/isNotArrayLike.js +24 -0
- package/es/isNotAsyncFunction.js +27 -0
- package/es/isNotBoolean.js +22 -0
- package/es/isNotDate.js +21 -0
- package/es/isNotEmpty.js +25 -0
- package/es/isNotFinite.js +29 -0
- package/es/isNotFloat.js +33 -0
- package/es/isNotFunction.js +29 -0
- package/es/isNotGeneratorFunction.js +27 -0
- package/es/isNotInteger.js +34 -0
- package/es/isNotMap.js +24 -0
- package/es/isNotNaN.js +35 -0
- package/es/isNotNil.js +22 -0
- package/es/isNotNilOrEmpty.js +26 -0
- package/es/isNotNull.js +22 -0
- package/es/isNotNumber.js +23 -0
- package/es/isNotObj.js +29 -0
- package/es/isNotObjLike.js +29 -0
- package/es/isNotPair.js +25 -0
- package/es/isNotPlainObj.js +35 -0
- package/es/isNotPrimitive.js +22 -0
- package/es/isNotRegExp.js +22 -0
- package/es/isNotSet.js +23 -0
- package/es/isNotString.js +21 -0
- package/es/isNotUndefined.js +22 -0
- package/es/isNotValidDate.js +22 -0
- package/es/isNotValidNumber.js +25 -0
- package/es/isNull.js +21 -0
- package/es/isNumber.js +23 -0
- package/es/isObj.js +31 -0
- package/es/isObjLike.js +30 -0
- package/es/isOdd.js +24 -0
- package/es/isPair.js +25 -0
- package/es/isPlainObj.js +52 -0
- package/es/isPositive.js +24 -0
- package/es/isPositiveZero.js +22 -0
- package/es/isPrimitive.js +31 -0
- package/es/isPromise.js +27 -0
- package/es/isPrototypeOf.js +34 -0
- package/es/isRegExp.js +21 -0
- package/es/isSafeInteger.js +34 -0
- package/es/isSentinelValue.js +26 -0
- package/es/isSet.js +22 -0
- package/es/isSparseArray.js +30 -0
- package/es/isString.js +20 -0
- package/es/isSymbol.js +27 -0
- package/es/isThenable.js +26 -0
- package/es/isTrue.js +25 -0
- package/es/isTruthy.js +27 -0
- package/es/isUndefined.js +22 -0
- package/es/isValidDate.js +26 -0
- package/es/isValidNumber.js +26 -0
- package/es/lastP.js +63 -0
- package/es/lengthEq.js +22 -0
- package/es/lengthGt.js +22 -0
- package/es/lengthGte.js +24 -0
- package/es/lengthLt.js +22 -0
- package/es/lengthLte.js +23 -0
- package/es/lengthNotEq.js +22 -0
- package/es/lensEq.js +27 -0
- package/es/lensIso.js +55 -0
- package/es/lensNotEq.js +26 -0
- package/es/lensNotSatisfy.js +28 -0
- package/es/lensSatisfies.js +31 -0
- package/es/lensTraverse.js +42 -0
- package/es/liftF.js +37 -0
- package/es/liftFN.js +47 -0
- package/es/list.js +19 -0
- package/es/mapIndexed.js +26 -0
- package/es/mergePath.js +30 -0
- package/es/mergePaths.js +27 -0
- package/es/mergeProp.js +30 -0
- package/es/mergeProps.js +26 -0
- package/es/mergeRight.js +26 -0
- package/es/move.js +25 -0
- package/es/nand.js +27 -0
- package/es/neither.js +39 -0
- package/es/noneP.js +28 -0
- package/es/nonePass.js +31 -0
- package/es/noop.js +19 -0
- package/es/nor.js +28 -0
- package/es/notAllPass.js +31 -0
- package/es/notAllUnique.js +23 -0
- package/es/notBoth.js +39 -0
- package/es/notEqual.js +30 -0
- package/es/omitBy.js +26 -0
- package/es/omitIndexes.js +27 -0
- package/es/overlaps.js +29 -0
- package/es/padCharsEnd.js +31 -0
- package/es/padCharsStart.js +29 -0
- package/es/padEnd.js +24 -0
- package/es/padStart.js +22 -0
- package/es/pathNotEq.js +32 -0
- package/es/pathOrLazy.js +25 -0
- package/es/paths.js +27 -0
- package/es/pickIndexes.js +30 -0
- package/es/propNotEq.js +29 -0
- package/es/rangeStep.js +36 -0
- package/es/reduceIndexed.js +30 -0
- package/es/reduceP.js +111 -0
- package/es/reduceRightP.js +117 -0
- package/es/rejectP.js +23 -0
- package/es/renameKeyWith.js +28 -0
- package/es/renameKeys.js +42 -0
- package/es/renameKeysWith.js +26 -0
- package/es/repeatStr.js +24 -0
- package/es/replaceAll.js +29 -0
- package/es/resolveP.js +29 -0
- package/es/round.js +24 -0
- package/es/seq.js +44 -0
- package/es/sign.js +27 -0
- package/es/skipTake.js +22 -0
- package/es/sliceFrom.js +22 -0
- package/es/sliceTo.js +22 -0
- package/es/sortByProps.js +52 -0
- package/es/spreadPath.js +25 -0
- package/es/spreadProp.js +25 -0
- package/es/stubArray.js +19 -0
- package/es/stubNull.js +18 -0
- package/es/stubObj.js +20 -0
- package/es/stubString.js +18 -0
- package/es/stubUndefined.js +19 -0
- package/es/subtractNum.js +19 -0
- package/es/thenCatchP.js +26 -0
- package/es/thenP.js +28 -0
- package/es/toArray.js +27 -0
- package/es/toInteger32.js +24 -0
- package/es/toUinteger32.js +26 -0
- package/es/trimCharsEnd.js +22 -0
- package/es/trimCharsStart.js +22 -0
- package/es/trimEnd.js +23 -0
- package/es/trimStart.js +22 -0
- package/es/trunc.js +27 -0
- package/es/unzipObjWith.js +26 -0
- package/es/viewOr.js +30 -0
- package/es/weave.js +36 -0
- package/es/weaveLazy.js +38 -0
- package/es/zipObjWith.js +26 -0
- package/lib/Y.js +44 -0
- package/lib/allEqual.js +35 -0
- package/lib/allEqualTo.js +32 -0
- package/lib/allIdentical.js +33 -0
- package/lib/allIdenticalTo.js +32 -0
- package/lib/allP.js +32 -0
- package/lib/allSettledP.js +41 -0
- package/lib/allUnique.js +32 -0
- package/lib/anyP.js +47 -0
- package/lib/appendFlipped.js +29 -0
- package/lib/argsPass.js +48 -0
- package/lib/async.js +67 -0
- package/lib/cata.js +110 -0
- package/lib/catchP.js +30 -0
- package/lib/ceil.js +32 -0
- package/lib/compact.js +30 -0
- package/lib/concatAll.js +40 -0
- package/lib/concatRight.js +35 -0
- package/lib/contained.js +35 -0
- package/lib/curryRight.js +33 -0
- package/lib/curryRightN.js +38 -0
- package/lib/defaultWhen.js +31 -0
- package/lib/delayP.js +54 -0
- package/lib/dispatch.js +50 -0
- package/lib/divideNum.js +25 -0
- package/lib/dropArgs.js +28 -0
- package/lib/ensureArray.js +31 -0
- package/lib/escapeRegExp.js +29 -0
- package/lib/fantasy-land/Identity.js +323 -0
- package/lib/fantasy-land/mapping.js +44 -0
- package/lib/fantasy-land/traits.js +77 -0
- package/lib/fantasy-land/util.js +21 -0
- package/lib/filterIndexed.js +33 -0
- package/lib/findOr.js +34 -0
- package/lib/flattenDepth.js +58 -0
- package/lib/flattenPath.js +33 -0
- package/lib/flattenProp.js +37 -0
- package/lib/floor.js +31 -0
- package/lib/fnull.js +47 -0
- package/lib/hasPath.js +47 -0
- package/lib/inRange.js +37 -0
- package/lib/index.js +863 -0
- package/lib/internal/ap.js +37 -0
- package/lib/internal/compareLength.js +12 -0
- package/lib/internal/isOfTypeObject.js +13 -0
- package/lib/internal/makeFlat.js +54 -0
- package/lib/internal/ponyfills/Array.from.js +52 -0
- package/lib/internal/ponyfills/Math.sign.js +11 -0
- package/lib/internal/ponyfills/Math.trunc.js +22 -0
- package/lib/internal/ponyfills/Number.MAX_SAFE_INTEGER.js +7 -0
- package/lib/internal/ponyfills/Number.MIN_SAFE_INTEGER.js +7 -0
- package/lib/internal/ponyfills/Number.isFinite.js +15 -0
- package/lib/internal/ponyfills/Number.isInteger.js +14 -0
- package/lib/internal/ponyfills/Number.isNaN.js +15 -0
- package/lib/internal/ponyfills/Number.isSafeInteger.js +18 -0
- package/lib/internal/ponyfills/Promise.allSettled.js +48 -0
- package/lib/internal/ponyfills/Promise.any.js +89 -0
- package/lib/internal/ponyfills/String.padEnd.js +34 -0
- package/lib/internal/ponyfills/String.padStart.js +36 -0
- package/lib/internal/ponyfills/String.repeat.js +55 -0
- package/lib/internal/ponyfills/String.replaceAll.js +44 -0
- package/lib/internal/ponyfills/String.trimEnd.js +10 -0
- package/lib/internal/ponyfills/String.trimStart.js +10 -0
- package/lib/invoke.js +29 -0
- package/lib/invokeArgs.js +40 -0
- package/lib/isArray.js +31 -0
- package/lib/isArrayLike.js +98 -0
- package/lib/isAsyncFunction.js +28 -0
- package/lib/isBigInt.js +29 -0
- package/lib/isBoolean.js +27 -0
- package/lib/isDate.js +26 -0
- package/lib/isEmptyArray.js +35 -0
- package/lib/isEmptyString.js +33 -0
- package/lib/isError.js +26 -0
- package/lib/isEven.js +39 -0
- package/lib/isFalse.js +35 -0
- package/lib/isFalsy.js +35 -0
- package/lib/isFinite.js +46 -0
- package/lib/isFloat.js +44 -0
- package/lib/isFunction.js +36 -0
- package/lib/isGeneratorFunction.js +40 -0
- package/lib/isIndexed.js +31 -0
- package/lib/isInteger.js +47 -0
- package/lib/isInteger32.js +37 -0
- package/lib/isIterable.js +42 -0
- package/lib/isMap.js +29 -0
- package/lib/isNaN.js +54 -0
- package/lib/isNaturalNumber.js +35 -0
- package/lib/isNegative.js +34 -0
- package/lib/isNegativeZero.js +28 -0
- package/lib/isNilOrEmpty.js +31 -0
- package/lib/isNonEmptyArray.js +37 -0
- package/lib/isNonEmptyString.js +41 -0
- package/lib/isNonNegative.js +37 -0
- package/lib/isNonPositive.js +37 -0
- package/lib/isNotArray.js +31 -0
- package/lib/isNotArrayLike.js +33 -0
- package/lib/isNotAsyncFunction.js +36 -0
- package/lib/isNotBoolean.js +31 -0
- package/lib/isNotDate.js +30 -0
- package/lib/isNotEmpty.js +31 -0
- package/lib/isNotFinite.js +38 -0
- package/lib/isNotFloat.js +42 -0
- package/lib/isNotFunction.js +38 -0
- package/lib/isNotGeneratorFunction.js +36 -0
- package/lib/isNotInteger.js +43 -0
- package/lib/isNotMap.js +33 -0
- package/lib/isNotNaN.js +44 -0
- package/lib/isNotNil.js +28 -0
- package/lib/isNotNilOrEmpty.js +35 -0
- package/lib/isNotNull.js +31 -0
- package/lib/isNotNumber.js +32 -0
- package/lib/isNotObj.js +38 -0
- package/lib/isNotObjLike.js +38 -0
- package/lib/isNotPair.js +34 -0
- package/lib/isNotPlainObj.js +44 -0
- package/lib/isNotPrimitive.js +31 -0
- package/lib/isNotRegExp.js +31 -0
- package/lib/isNotSet.js +32 -0
- package/lib/isNotString.js +30 -0
- package/lib/isNotUndefined.js +31 -0
- package/lib/isNotValidDate.js +31 -0
- package/lib/isNotValidNumber.js +34 -0
- package/lib/isNull.js +27 -0
- package/lib/isNumber.js +29 -0
- package/lib/isObj.js +42 -0
- package/lib/isObjLike.js +40 -0
- package/lib/isOdd.js +33 -0
- package/lib/isPair.js +34 -0
- package/lib/isPlainObj.js +64 -0
- package/lib/isPositive.js +33 -0
- package/lib/isPositiveZero.js +28 -0
- package/lib/isPrimitive.js +47 -0
- package/lib/isPromise.js +36 -0
- package/lib/isPrototypeOf.js +43 -0
- package/lib/isRegExp.js +27 -0
- package/lib/isSafeInteger.js +46 -0
- package/lib/isSentinelValue.js +35 -0
- package/lib/isSet.js +28 -0
- package/lib/isSparseArray.js +39 -0
- package/lib/isString.js +26 -0
- package/lib/isSymbol.js +33 -0
- package/lib/isThenable.js +35 -0
- package/lib/isTrue.js +31 -0
- package/lib/isTruthy.js +33 -0
- package/lib/isUndefined.js +31 -0
- package/lib/isValidDate.js +36 -0
- package/lib/isValidNumber.js +36 -0
- package/lib/lastP.js +76 -0
- package/lib/lengthEq.js +31 -0
- package/lib/lengthGt.js +31 -0
- package/lib/lengthGte.js +33 -0
- package/lib/lengthLt.js +31 -0
- package/lib/lengthLte.js +32 -0
- package/lib/lengthNotEq.js +31 -0
- package/lib/lensEq.js +33 -0
- package/lib/lensIso.js +62 -0
- package/lib/lensNotEq.js +35 -0
- package/lib/lensNotSatisfy.js +37 -0
- package/lib/lensSatisfies.js +40 -0
- package/lib/lensTraverse.js +51 -0
- package/lib/liftF.js +46 -0
- package/lib/liftFN.js +56 -0
- package/lib/list.js +25 -0
- package/lib/mapIndexed.js +32 -0
- package/lib/mergePath.js +39 -0
- package/lib/mergePaths.js +36 -0
- package/lib/mergeProp.js +39 -0
- package/lib/mergeProps.js +32 -0
- package/lib/mergeRight.js +32 -0
- package/lib/move.js +31 -0
- package/lib/nand.js +33 -0
- package/lib/neither.js +45 -0
- package/lib/noneP.js +39 -0
- package/lib/nonePass.js +37 -0
- package/lib/noop.js +28 -0
- package/lib/nor.js +34 -0
- package/lib/notAllPass.js +37 -0
- package/lib/notAllUnique.js +32 -0
- package/lib/notBoth.js +45 -0
- package/lib/notEqual.js +36 -0
- package/lib/omitBy.js +32 -0
- package/lib/omitIndexes.js +34 -0
- package/lib/overlaps.js +38 -0
- package/lib/padCharsEnd.js +44 -0
- package/lib/padCharsStart.js +42 -0
- package/lib/padEnd.js +32 -0
- package/lib/padStart.js +30 -0
- package/lib/pathNotEq.js +38 -0
- package/lib/pathOrLazy.js +31 -0
- package/lib/paths.js +33 -0
- package/lib/pickIndexes.js +37 -0
- package/lib/propNotEq.js +35 -0
- package/lib/rangeStep.js +45 -0
- package/lib/reduceIndexed.js +36 -0
- package/lib/reduceP.js +122 -0
- package/lib/reduceRightP.js +129 -0
- package/lib/rejectP.js +29 -0
- package/lib/renameKeyWith.js +37 -0
- package/lib/renameKeys.js +51 -0
- package/lib/renameKeysWith.js +32 -0
- package/lib/repeatStr.js +37 -0
- package/lib/replaceAll.js +42 -0
- package/lib/resolveP.js +35 -0
- package/lib/round.js +30 -0
- package/lib/seq.js +50 -0
- package/lib/sign.js +39 -0
- package/lib/skipTake.js +28 -0
- package/lib/sliceFrom.js +28 -0
- package/lib/sliceTo.js +28 -0
- package/lib/sortByProps.js +58 -0
- package/lib/spreadPath.js +31 -0
- package/lib/spreadProp.js +34 -0
- package/lib/stubArray.js +25 -0
- package/lib/stubNull.js +24 -0
- package/lib/stubObj.js +26 -0
- package/lib/stubString.js +24 -0
- package/lib/stubUndefined.js +25 -0
- package/lib/subtractNum.js +25 -0
- package/lib/thenCatchP.js +33 -0
- package/lib/thenP.js +34 -0
- package/lib/toArray.js +40 -0
- package/lib/toInteger32.js +30 -0
- package/lib/toUinteger32.js +32 -0
- package/lib/trimCharsEnd.js +31 -0
- package/lib/trimCharsStart.js +31 -0
- package/lib/trimEnd.js +36 -0
- package/lib/trimStart.js +35 -0
- package/lib/trunc.js +39 -0
- package/lib/unzipObjWith.js +35 -0
- package/lib/viewOr.js +36 -0
- package/lib/weave.js +42 -0
- package/lib/weaveLazy.js +44 -0
- package/lib/zipObjWith.js +32 -0
- package/package.json +204 -0
- package/src/Y.js +32 -0
- package/src/allEqual.js +28 -0
- package/src/allEqualTo.js +25 -0
- package/src/allIdentical.js +26 -0
- package/src/allIdenticalTo.js +25 -0
- package/src/allP.js +27 -0
- package/src/allSettledP.js +34 -0
- package/src/allUnique.js +25 -0
- package/src/anyP.js +33 -0
- package/src/appendFlipped.js +24 -0
- package/src/argsPass.js +40 -0
- package/src/async.js +60 -0
- package/src/cata.js +86 -0
- package/src/catchP.js +25 -0
- package/src/ceil.js +28 -0
- package/src/compact.js +23 -0
- package/src/concatAll.js +34 -0
- package/src/concatRight.js +30 -0
- package/src/contained.js +30 -0
- package/src/curryRight.js +26 -0
- package/src/curryRightN.js +29 -0
- package/src/defaultWhen.js +26 -0
- package/src/delayP.js +45 -0
- package/src/dispatch.js +74 -0
- package/src/divideNum.js +20 -0
- package/src/dropArgs.js +23 -0
- package/src/ensureArray.js +24 -0
- package/src/escapeRegExp.js +22 -0
- package/src/fantasy-land/Identity.js +270 -0
- package/src/fantasy-land/mapping.js +20 -0
- package/src/fantasy-land/traits.js +57 -0
- package/src/fantasy-land/util.js +23 -0
- package/src/filterIndexed.js +28 -0
- package/src/findOr.js +30 -0
- package/src/flattenDepth.js +39 -0
- package/src/flattenPath.js +26 -0
- package/src/flattenProp.js +28 -0
- package/src/floor.js +27 -0
- package/src/fnull.js +38 -0
- package/src/hasPath.js +40 -0
- package/src/inRange.js +34 -0
- package/src/index.js +241 -0
- package/src/internal/ap.js +30 -0
- package/src/internal/compareLength.js +7 -0
- package/src/internal/isOfTypeObject.js +3 -0
- package/src/internal/makeFlat.js +42 -0
- package/src/internal/ponyfills/Array.from.js +34 -0
- package/src/internal/ponyfills/Math.sign.js +3 -0
- package/src/internal/ponyfills/Math.trunc.js +14 -0
- package/src/internal/ponyfills/Number.MAX_SAFE_INTEGER.js +3 -0
- package/src/internal/ponyfills/Number.MIN_SAFE_INTEGER.js +3 -0
- package/src/internal/ponyfills/Number.isFinite.js +8 -0
- package/src/internal/ponyfills/Number.isInteger.js +10 -0
- package/src/internal/ponyfills/Number.isNaN.js +8 -0
- package/src/internal/ponyfills/Number.isSafeInteger.js +11 -0
- package/src/internal/ponyfills/Promise.allSettled.js +18 -0
- package/src/internal/ponyfills/Promise.any.js +29 -0
- package/src/internal/ponyfills/String.padEnd.js +25 -0
- package/src/internal/ponyfills/String.padStart.js +27 -0
- package/src/internal/ponyfills/String.repeat.js +49 -0
- package/src/internal/ponyfills/String.replaceAll.js +44 -0
- package/src/internal/ponyfills/String.trimEnd.js +5 -0
- package/src/internal/ponyfills/String.trimStart.js +5 -0
- package/src/invoke.js +22 -0
- package/src/invokeArgs.js +36 -0
- package/src/isArray.js +27 -0
- package/src/isArrayLike.js +79 -0
- package/src/isAsyncFunction.js +23 -0
- package/src/isBigInt.js +24 -0
- package/src/isBoolean.js +22 -0
- package/src/isDate.js +21 -0
- package/src/isEmptyArray.js +28 -0
- package/src/isEmptyString.js +28 -0
- package/src/isError.js +21 -0
- package/src/isEven.js +31 -0
- package/src/isFalse.js +31 -0
- package/src/isFalsy.js +28 -0
- package/src/isFinite.js +37 -0
- package/src/isFloat.js +36 -0
- package/src/isFunction.js +32 -0
- package/src/isGeneratorFunction.js +43 -0
- package/src/isIndexed.js +24 -0
- package/src/isInteger.js +40 -0
- package/src/isInteger32.js +28 -0
- package/src/isIterable.js +37 -0
- package/src/isMap.js +25 -0
- package/src/isNaN.js +45 -0
- package/src/isNaturalNumber.js +28 -0
- package/src/isNegative.js +27 -0
- package/src/isNegativeZero.js +23 -0
- package/src/isNilOrEmpty.js +26 -0
- package/src/isNonEmptyArray.js +29 -0
- package/src/isNonEmptyString.js +32 -0
- package/src/isNonNegative.js +30 -0
- package/src/isNonPositive.js +30 -0
- package/src/isNotArray.js +24 -0
- package/src/isNotArrayLike.js +26 -0
- package/src/isNotAsyncFunction.js +27 -0
- package/src/isNotBoolean.js +24 -0
- package/src/isNotDate.js +23 -0
- package/src/isNotEmpty.js +26 -0
- package/src/isNotFinite.js +31 -0
- package/src/isNotFloat.js +35 -0
- package/src/isNotFunction.js +29 -0
- package/src/isNotGeneratorFunction.js +27 -0
- package/src/isNotInteger.js +36 -0
- package/src/isNotMap.js +27 -0
- package/src/isNotNaN.js +37 -0
- package/src/isNotNil.js +23 -0
- package/src/isNotNilOrEmpty.js +28 -0
- package/src/isNotNull.js +24 -0
- package/src/isNotNumber.js +25 -0
- package/src/isNotObj.js +29 -0
- package/src/isNotObjLike.js +29 -0
- package/src/isNotPair.js +27 -0
- package/src/isNotPlainObj.js +35 -0
- package/src/isNotPrimitive.js +25 -0
- package/src/isNotRegExp.js +24 -0
- package/src/isNotSet.js +26 -0
- package/src/isNotString.js +23 -0
- package/src/isNotUndefined.js +24 -0
- package/src/isNotValidDate.js +24 -0
- package/src/isNotValidNumber.js +27 -0
- package/src/isNull.js +22 -0
- package/src/isNumber.js +24 -0
- package/src/isObj.js +31 -0
- package/src/isObjLike.js +30 -0
- package/src/isOdd.js +29 -0
- package/src/isPair.js +27 -0
- package/src/isPlainObj.js +65 -0
- package/src/isPositive.js +26 -0
- package/src/isPositiveZero.js +23 -0
- package/src/isPrimitive.js +45 -0
- package/src/isPromise.js +32 -0
- package/src/isPrototypeOf.js +36 -0
- package/src/isRegExp.js +22 -0
- package/src/isSafeInteger.js +40 -0
- package/src/isSentinelValue.js +26 -0
- package/src/isSet.js +24 -0
- package/src/isSparseArray.js +43 -0
- package/src/isString.js +21 -0
- package/src/isSymbol.js +29 -0
- package/src/isThenable.js +28 -0
- package/src/isTrue.js +27 -0
- package/src/isTruthy.js +28 -0
- package/src/isUndefined.js +24 -0
- package/src/isValidDate.js +29 -0
- package/src/isValidNumber.js +28 -0
- package/src/lastP.js +54 -0
- package/src/lengthEq.js +24 -0
- package/src/lengthGt.js +24 -0
- package/src/lengthGte.js +26 -0
- package/src/lengthLt.js +24 -0
- package/src/lengthLte.js +25 -0
- package/src/lengthNotEq.js +24 -0
- package/src/lensEq.js +28 -0
- package/src/lensIso.js +51 -0
- package/src/lensNotEq.js +28 -0
- package/src/lensNotSatisfy.js +30 -0
- package/src/lensSatisfies.js +33 -0
- package/src/lensTraverse.js +44 -0
- package/src/liftF.js +37 -0
- package/src/liftFN.js +45 -0
- package/src/list.js +20 -0
- package/src/mapIndexed.js +27 -0
- package/src/mergePath.js +32 -0
- package/src/mergePaths.js +29 -0
- package/src/mergeProp.js +30 -0
- package/src/mergeProps.js +27 -0
- package/src/mergeRight.js +27 -0
- package/src/move.js +26 -0
- package/src/nand.js +27 -0
- package/src/neither.js +38 -0
- package/src/noneP.js +35 -0
- package/src/nonePass.js +32 -0
- package/src/noop.js +21 -0
- package/src/nor.js +28 -0
- package/src/notAllPass.js +32 -0
- package/src/notAllUnique.js +25 -0
- package/src/notBoth.js +38 -0
- package/src/notEqual.js +31 -0
- package/src/omitBy.js +25 -0
- package/src/omitIndexes.js +27 -0
- package/src/overlaps.js +32 -0
- package/src/padCharsEnd.js +37 -0
- package/src/padCharsStart.js +35 -0
- package/src/padEnd.js +25 -0
- package/src/padStart.js +23 -0
- package/src/pathNotEq.js +31 -0
- package/src/pathOrLazy.js +30 -0
- package/src/paths.js +26 -0
- package/src/pickIndexes.js +30 -0
- package/src/propNotEq.js +30 -0
- package/src/rangeStep.js +37 -0
- package/src/reduceIndexed.js +31 -0
- package/src/reduceP.js +96 -0
- package/src/reduceRightP.js +101 -0
- package/src/rejectP.js +24 -0
- package/src/renameKeyWith.js +30 -0
- package/src/renameKeys.js +40 -0
- package/src/renameKeysWith.js +27 -0
- package/src/repeatStr.js +30 -0
- package/src/replaceAll.js +35 -0
- package/src/resolveP.js +28 -0
- package/src/round.js +26 -0
- package/src/seq.js +38 -0
- package/src/sign.js +33 -0
- package/src/skipTake.js +33 -0
- package/src/sliceFrom.js +23 -0
- package/src/sliceTo.js +23 -0
- package/src/sortByProps.js +31 -0
- package/src/spreadPath.js +26 -0
- package/src/spreadProp.js +25 -0
- package/src/stubArray.js +18 -0
- package/src/stubNull.js +19 -0
- package/src/stubObj.js +19 -0
- package/src/stubString.js +19 -0
- package/src/stubUndefined.js +19 -0
- package/src/subtractNum.js +20 -0
- package/src/thenCatchP.js +27 -0
- package/src/thenP.js +29 -0
- package/src/toArray.js +32 -0
- package/src/toInteger32.js +22 -0
- package/src/toUinteger32.js +26 -0
- package/src/trimCharsEnd.js +25 -0
- package/src/trimCharsStart.js +25 -0
- package/src/trimEnd.js +30 -0
- package/src/trimStart.js +29 -0
- package/src/trunc.js +33 -0
- package/src/unzipObjWith.js +40 -0
- package/src/viewOr.js +32 -0
- package/src/weave.js +35 -0
- package/src/weaveLazy.js +37 -0
- package/src/zipObjWith.js +27 -0
- package/tonicExample.js +4 -0
- package/types/index.d.ts +1553 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,973 @@
|
|
|
1
|
+
# [2.34.0](https://github.com/char0n/ramda-adjunct/compare/v2.32.0...v2.34.0) (2021-09-29)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **function:** add catchP ([#1616](https://github.com/char0n/ramda-adjunct/issues/1616)) ([d6d1e78](https://github.com/char0n/ramda-adjunct/commit/d6d1e7825d16130ba916448355f06bad1f2bf0d9)), closes [#1232](https://github.com/char0n/ramda-adjunct/issues/1232)
|
|
7
|
+
* **type:** add isSentinelValue ([#1848](https://github.com/char0n/ramda-adjunct/issues/1848)) ([c48ce9e](https://github.com/char0n/ramda-adjunct/commit/c48ce9e2ab752006c25d385e830f3317bde5110c)), closes [#793](https://github.com/char0n/ramda-adjunct/issues/793)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
# [2.33.0](https://github.com/char0n/ramda-adjunct/compare/v2.32.0...v2.33.0) (2021-05-22)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
* **function:** add catchP ([#1616](https://github.com/char0n/ramda-adjunct/issues/1616)) ([d6d1e78](https://github.com/char0n/ramda-adjunct/commit/d6d1e7825d16130ba916448355f06bad1f2bf0d9)), closes [#1232](https://github.com/char0n/ramda-adjunct/issues/1232)
|
|
17
|
+
* **type:** add isSentinelValue ([#1848](https://github.com/char0n/ramda-adjunct/issues/1848)) ([c48ce9e](https://github.com/char0n/ramda-adjunct/commit/c48ce9e2ab752006c25d385e830f3317bde5110c)), closes [#793](https://github.com/char0n/ramda-adjunct/issues/793)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
# [2.32.0](https://github.com/char0n/ramda-adjunct/compare/v2.31.1...v2.32.0) (2021-04-10)
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
### Bug Fixes
|
|
25
|
+
|
|
26
|
+
* **isNotNil:** utilize type narrowing ([#1672](https://github.com/char0n/ramda-adjunct/issues/1672)) ([353a6db](https://github.com/char0n/ramda-adjunct/commit/353a6dbb5039d8a1f72b97c4c20471e2a4bb3cd8))
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
### Features
|
|
30
|
+
|
|
31
|
+
* **list:** add findOr ([#1479](https://github.com/char0n/ramda-adjunct/issues/1479)) ([e9d321a](https://github.com/char0n/ramda-adjunct/commit/e9d321aef8bf1200d9b5e3bccd59f787eb8f31f5)), closes [#372](https://github.com/char0n/ramda-adjunct/issues/372)
|
|
32
|
+
* **type:** add isInteger32 ([#1826](https://github.com/char0n/ramda-adjunct/issues/1826)) ([fe8331e](https://github.com/char0n/ramda-adjunct/commit/fe8331ea6d63aa8db8302f6730f11fa7d840df00)), closes [#1282](https://github.com/char0n/ramda-adjunct/issues/1282)
|
|
33
|
+
* **type:** add isPrimitive/isNotPrimitive ([#1722](https://github.com/char0n/ramda-adjunct/issues/1722)) ([901006a](https://github.com/char0n/ramda-adjunct/commit/901006a36c39a378b544e63c14a7c86d80bfba6f)), closes [#786](https://github.com/char0n/ramda-adjunct/issues/786)
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
# [2.31.1](https://github.com/char0n/ramda-adjunct/compare/v2.31.0...v2.31.1) (2021-02-21)
|
|
38
|
+
|
|
39
|
+
### Bug Fixes
|
|
40
|
+
|
|
41
|
+
* **deps**: remove postinstall husky script ([61f3fde](https://github.com/char0n/ramda-adjunct/commit/61f3fde46e3c65df0f67b217621fa9532141a2fa)), closes [#1773](https://github.com/char0n/ramda-adjunct/issues/1773)
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
# [2.31.0](https://github.com/char0n/ramda-adjunct/compare/v2.30.0...v2.31.0) (2021-02-21)
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
### Features
|
|
48
|
+
|
|
49
|
+
* **list:** add filterIndexed ([#1713](https://github.com/char0n/ramda-adjunct/issues/1713)) ([d3cfc63](https://github.com/char0n/ramda-adjunct/commit/d3cfc6325e13324ca6e54c10de016a522362511e)), closes [#1346](https://github.com/char0n/ramda-adjunct/issues/1346)
|
|
50
|
+
* **object:** add isPrototypeOf ([#1456](https://github.com/char0n/ramda-adjunct/issues/1456)) ([314be55](https://github.com/char0n/ramda-adjunct/commit/314be550cebf30719d418c68e8687108122d9af8)), closes [#787](https://github.com/char0n/ramda-adjunct/issues/787)
|
|
51
|
+
* **object:** add invoke ([#1554](https://github.com/char0n/ramda-adjunct/issues/1554)) ([e90ce3c](https://github.com/char0n/ramda-adjunct/commit/e90ce3cc714052d0e24dc2b592d43c77a8348eb9)), closes [#81](https://github.com/char0n/ramda-adjunct/issues/81)
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
# [2.30.0](https://github.com/char0n/ramda-adjunct/compare/v2.29.0...v2.30.0) (2020-12-27)
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
### Bug Fixes
|
|
59
|
+
|
|
60
|
+
* **invokeArgs:** update TypeScript signature ([#1710](https://github.com/char0n/ramda-adjunct/issues/1710)) ([775d282](https://github.com/char0n/ramda-adjunct/commit/775d2825c4cbed2118a0cbaad2c13587090a49b1)), closes [#1707](https://github.com/char0n/ramda-adjunct/issues/1707)
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
### Features
|
|
64
|
+
|
|
65
|
+
* **list:** add rangeStep ([#1708](https://github.com/char0n/ramda-adjunct/issues/1708)) ([82c0368](https://github.com/char0n/ramda-adjunct/commit/82c0368008ee5ed90e28baf1a91ad74b91ba7072)), closes [#1477](https://github.com/char0n/ramda-adjunct/issues/1477) [#1230](https://github.com/char0n/ramda-adjunct/issues/1230)
|
|
66
|
+
* **relation:** add overlaps ([2ea5355](https://github.com/char0n/ramda-adjunct/commit/2ea5355608a9016c96de39a87d48f21016bef330)), closes [#1229](https://github.com/char0n/ramda-adjunct/issues/1229)
|
|
67
|
+
* **type:** add isError ([#1449](https://github.com/char0n/ramda-adjunct/issues/1449)) ([adf25c2](https://github.com/char0n/ramda-adjunct/commit/adf25c2a0aa79bf53df66f4bd9720b5039dfd185)), closes [#206](https://github.com/char0n/ramda-adjunct/issues/206)
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
# [2.29.0](https://github.com/char0n/ramda-adjunct/compare/v2.28.0...v2.29.0) (2020-12-13)
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
### Bug Fixes
|
|
75
|
+
|
|
76
|
+
* **compact:** remove other falsy values from type ([#1603](https://github.com/char0n/ramda-adjunct/issues/1603)) ([31651bc](https://github.com/char0n/ramda-adjunct/commit/31651bca82e2e365daf35ea65f084ea8cd3dbb2c)), closes [#1602](https://github.com/char0n/ramda-adjunct/issues/1602)
|
|
77
|
+
* **replaceAll:** add support for special replacement patterns ([#1627](https://github.com/char0n/ramda-adjunct/issues/1627)) ([1f862a1](https://github.com/char0n/ramda-adjunct/commit/1f862a14d924e5f46e7f80f6ae60030fc8cf854c)), closes [#1573](https://github.com/char0n/ramda-adjunct/issues/1573)
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
### Features
|
|
81
|
+
|
|
82
|
+
* **object:** add renameKeyWith ([#1612](https://github.com/char0n/ramda-adjunct/issues/1612)) ([6aa00ce](https://github.com/char0n/ramda-adjunct/commit/6aa00ce7d093a9f65eba2eec380bea24209774bf)), closes [#1228](https://github.com/char0n/ramda-adjunct/issues/1228)
|
|
83
|
+
* **relation:** add notEqual ([#1459](https://github.com/char0n/ramda-adjunct/issues/1459)) ([4eb9ada](https://github.com/char0n/ramda-adjunct/commit/4eb9adab2d5e271a8fa3ae2859feeeb8af84874a)), closes [#102](https://github.com/char0n/ramda-adjunct/issues/102)
|
|
84
|
+
* **type:** isNaturalNumber ([#1450](https://github.com/char0n/ramda-adjunct/issues/1450)) ([ba6bb12](https://github.com/char0n/ramda-adjunct/commit/ba6bb129476426a880e1d029929fafa924cfbc06)), closes [#1440](https://github.com/char0n/ramda-adjunct/issues/1440)
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
# [2.28.0](https://github.com/char0n/ramda-adjunct/compare/v2.27.0...v2.28.0) (2020-09-13)
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
### Features
|
|
92
|
+
|
|
93
|
+
* add support for ramda@0.27.1 ([5699402](https://github.com/char0n/ramda-adjunct/commit/56994024c1a4b20c9bbed207c6d39b12b50a3fcc)), closes [#1577](https://github.com/char0n/ramda-adjunct/issues/1577)
|
|
94
|
+
* **Math:** add toInteger32 ([#1463](https://github.com/char0n/ramda-adjunct/issues/1463)) ([1f39b34](https://github.com/char0n/ramda-adjunct/commit/1f39b34972b2eb5cd80ca9440cb6768cf4977980)), closes [#783](https://github.com/char0n/ramda-adjunct/issues/783)
|
|
95
|
+
* **Math:** add toUinteger32 ([cdbdd3c](https://github.com/char0n/ramda-adjunct/commit/cdbdd3c44b549e2d97e0ae122463cb8c8120ea83)), closes [#1278](https://github.com/char0n/ramda-adjunct/issues/1278)
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
<a name="2.27.0"></a>
|
|
100
|
+
# [2.27.0](https://github.com/char0n/ramda-adjunct/compare/v2.26.0...v2.27.0) (2020-05-23)
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
### Bug Fixes
|
|
104
|
+
|
|
105
|
+
* **iterable:** convert isIterable into a type guard function ([#1414](https://github.com/char0n/ramda-adjunct/issues/1414)) ([57cfab2](https://github.com/char0n/ramda-adjunct/commit/57cfab2)), closes [#1412](https://github.com/char0n/ramda-adjunct/issues/1412)
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
### Features
|
|
109
|
+
|
|
110
|
+
* **type:** add isNotSet ([#1434](https://github.com/char0n/ramda-adjunct/issues/1434)) ([9ecfaa7](https://github.com/char0n/ramda-adjunct/commit/9ecfaa7)), closes [#1123](https://github.com/char0n/ramda-adjunct/issues/1123)
|
|
111
|
+
* add isNotMap ([#1433](https://github.com/char0n/ramda-adjunct/issues/1433)) ([3378238](https://github.com/char0n/ramda-adjunct/commit/3378238)), closes [#1122](https://github.com/char0n/ramda-adjunct/issues/1122)
|
|
112
|
+
* **object:** add invokeArgs ([#1409](https://github.com/char0n/ramda-adjunct/issues/1409)) ([ea725f1](https://github.com/char0n/ramda-adjunct/commit/ea725f1)), closes [#1239](https://github.com/char0n/ramda-adjunct/issues/1239)
|
|
113
|
+
* add isBigInt ([#1406](https://github.com/char0n/ramda-adjunct/issues/1406)) ([67dfe1e](https://github.com/char0n/ramda-adjunct/commit/67dfe1e)), closes [#1253](https://github.com/char0n/ramda-adjunct/issues/1253)
|
|
114
|
+
* add thenCatchP ([#1322](https://github.com/char0n/ramda-adjunct/issues/1322)) ([54256f3](https://github.com/char0n/ramda-adjunct/commit/54256f3)), closes [#1233](https://github.com/char0n/ramda-adjunct/issues/1233)
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
<a name="2.26.0"></a>
|
|
119
|
+
# [2.26.0](https://github.com/char0n/ramda-adjunct/compare/v2.25.0...v2.26.0) (2020-03-16)
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
### Bug Fixes
|
|
123
|
+
|
|
124
|
+
* **mapIndexed:** make list argument Readonly ([#1336](https://github.com/char0n/ramda-adjunct/issues/1336)) ([5555ef3](https://github.com/char0n/ramda-adjunct/commit/5555ef3)), closes [#1330](https://github.com/char0n/ramda-adjunct/issues/1330)
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
### Features
|
|
128
|
+
|
|
129
|
+
* add fnull ([#1321](https://github.com/char0n/ramda-adjunct/issues/1321)) ([4d0e49a](https://github.com/char0n/ramda-adjunct/commit/4d0e49a)), closes [#1235](https://github.com/char0n/ramda-adjunct/issues/1235)
|
|
130
|
+
* add isIndexed ([#1337](https://github.com/char0n/ramda-adjunct/issues/1337)) ([c4447db](https://github.com/char0n/ramda-adjunct/commit/c4447db)), closes [#1236](https://github.com/char0n/ramda-adjunct/issues/1236)
|
|
131
|
+
* add skipTake ([#1338](https://github.com/char0n/ramda-adjunct/issues/1338)) ([10c4141](https://github.com/char0n/ramda-adjunct/commit/10c4141)), closes [#1237](https://github.com/char0n/ramda-adjunct/issues/1237)
|
|
132
|
+
* add sortByProps ([#1323](https://github.com/char0n/ramda-adjunct/issues/1323)) ([7d93795](https://github.com/char0n/ramda-adjunct/commit/7d93795)), closes [#1242](https://github.com/char0n/ramda-adjunct/issues/1242)
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
|
|
136
|
+
<a name="2.25.0"></a>
|
|
137
|
+
# [2.25.0](https://github.com/char0n/ramda-adjunct/compare/v2.24.0...v2.25.0) (2020-02-04)
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
### Features
|
|
141
|
+
|
|
142
|
+
* add padStart ([#1287](https://github.com/char0n/ramda-adjunct/issues/1287)) ([054e9aa](https://github.com/char0n/ramda-adjunct/commit/054e9aa)), closes [#1103](https://github.com/char0n/ramda-adjunct/issues/1103)
|
|
143
|
+
* add support for ramda 0.27.0 ([#1304](https://github.com/char0n/ramda-adjunct/issues/1304)) ([78d776b](https://github.com/char0n/ramda-adjunct/commit/78d776b))
|
|
144
|
+
* add trimCharsEnd ([11293cf](https://github.com/char0n/ramda-adjunct/commit/11293cf)), closes [#1136](https://github.com/char0n/ramda-adjunct/issues/1136)
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
<a name="2.24.0"></a>
|
|
149
|
+
# [2.24.0](https://github.com/char0n/ramda-adjunct/compare/v2.23.0...v2.24.0) (2020-01-15)
|
|
150
|
+
|
|
151
|
+
|
|
152
|
+
### Features
|
|
153
|
+
|
|
154
|
+
* add trimCharsStart ([#1254](https://github.com/char0n/ramda-adjunct/issues/1254)) ([21fdacd](https://github.com/char0n/ramda-adjunct/commit/21fdacd)), closes [#1135](https://github.com/char0n/ramda-adjunct/issues/1135)
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
|
|
158
|
+
<a name="2.23.0"></a>
|
|
159
|
+
# [2.23.0](https://github.com/char0n/ramda-adjunct/compare/v2.22.1...v2.23.0) (2019-11-25)
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
### Features
|
|
163
|
+
|
|
164
|
+
* **function:** add delayP ([#1107](https://github.com/char0n/ramda-adjunct/issues/1107)) ([b6c1856](https://github.com/char0n/ramda-adjunct/commit/b6c1856)), closes [#1099](https://github.com/char0n/ramda-adjunct/issues/1099)
|
|
165
|
+
* **function:** add lastP ([#1127](https://github.com/char0n/ramda-adjunct/issues/1127)) ([7fe4836](https://github.com/char0n/ramda-adjunct/commit/7fe4836)), closes [#816](https://github.com/char0n/ramda-adjunct/issues/816)
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
|
|
169
|
+
<a name="2.22.1"></a>
|
|
170
|
+
## [2.22.1](https://github.com/char0n/ramda-adjunct/compare/v2.22.0...v2.22.1) (2019-11-06)
|
|
171
|
+
|
|
172
|
+
* add funding field to package.json ([600ccc7](https://github.com/char0n/ramda-adjunct/commit/600ccc7))
|
|
173
|
+
|
|
174
|
+
<a name="2.22.0"></a>
|
|
175
|
+
# [2.22.0](https://github.com/char0n/ramda-adjunct/compare/v2.21.0...v2.22.0) (2019-11-01)
|
|
176
|
+
|
|
177
|
+
|
|
178
|
+
### Features
|
|
179
|
+
|
|
180
|
+
* **function:** add anyP ([#1080](https://github.com/char0n/ramda-adjunct/issues/1080)) ([f8e87a8](https://github.com/char0n/ramda-adjunct/commit/f8e87a8)), closes [#807](https://github.com/char0n/ramda-adjunct/issues/807)
|
|
181
|
+
* **function:** add firstP alias for anyP ([5926aa0](https://github.com/char0n/ramda-adjunct/commit/5926aa0))
|
|
182
|
+
* **function:** add noneP ([#1095](https://github.com/char0n/ramda-adjunct/issues/1095)) ([9eacf26](https://github.com/char0n/ramda-adjunct/commit/9eacf26)), closes [#814](https://github.com/char0n/ramda-adjunct/issues/814)
|
|
183
|
+
* **list:** add allUnique ([#1117](https://github.com/char0n/ramda-adjunct/issues/1117)) ([63a8f46](https://github.com/char0n/ramda-adjunct/commit/63a8f46)), closes [#515](https://github.com/char0n/ramda-adjunct/issues/515)
|
|
184
|
+
* **list:** add notAllUnique ([#1125](https://github.com/char0n/ramda-adjunct/issues/1125)) ([6d5005f](https://github.com/char0n/ramda-adjunct/commit/6d5005f)), closes [#515](https://github.com/char0n/ramda-adjunct/issues/515)
|
|
185
|
+
* **list:** add toArray [#342](https://github.com/char0n/ramda-adjunct/issues/342) ([#1085](https://github.com/char0n/ramda-adjunct/issues/1085)) ([eb0e66f](https://github.com/char0n/ramda-adjunct/commit/eb0e66f))
|
|
186
|
+
* **math:** add divideNum ([#1081](https://github.com/char0n/ramda-adjunct/issues/1081)) ([7b0c3b2](https://github.com/char0n/ramda-adjunct/commit/7b0c3b2)), closes [#482](https://github.com/char0n/ramda-adjunct/issues/482)
|
|
187
|
+
* **math:** add subtractNum ([#1082](https://github.com/char0n/ramda-adjunct/issues/1082)) ([7080706](https://github.com/char0n/ramda-adjunct/commit/7080706)), closes [#483](https://github.com/char0n/ramda-adjunct/issues/483)
|
|
188
|
+
* **object:** add pathOrLazy ([#1086](https://github.com/char0n/ramda-adjunct/issues/1086)) ([4fbf439](https://github.com/char0n/ramda-adjunct/commit/4fbf439)), closes [#1084](https://github.com/char0n/ramda-adjunct/issues/1084)
|
|
189
|
+
* **object:** add unzipObjWith ([#1130](https://github.com/char0n/ramda-adjunct/issues/1130)) ([64ce9b6](https://github.com/char0n/ramda-adjunct/commit/64ce9b6)), closes [#801](https://github.com/char0n/ramda-adjunct/issues/801)
|
|
190
|
+
* **object:** add zipObjWith ([#1132](https://github.com/char0n/ramda-adjunct/issues/1132)) ([b803a7a](https://github.com/char0n/ramda-adjunct/commit/b803a7a)), closes [#1129](https://github.com/char0n/ramda-adjunct/issues/1129)
|
|
191
|
+
* **replaceAll:** implement TC39 proposal ([#1124](https://github.com/char0n/ramda-adjunct/issues/1124)) ([74d5163](https://github.com/char0n/ramda-adjunct/commit/74d5163)), closes [#878](https://github.com/char0n/ramda-adjunct/issues/878)
|
|
192
|
+
* **string:** add padCharsEnd ([#1131](https://github.com/char0n/ramda-adjunct/issues/1131)) ([c3848be](https://github.com/char0n/ramda-adjunct/commit/c3848be)), closes [#1104](https://github.com/char0n/ramda-adjunct/issues/1104)
|
|
193
|
+
* **string:** add padCharsStart ([#1143](https://github.com/char0n/ramda-adjunct/issues/1143)) ([4a54edd](https://github.com/char0n/ramda-adjunct/commit/4a54edd))
|
|
194
|
+
* **string:** add padEnd ([ac4e319](https://github.com/char0n/ramda-adjunct/commit/ac4e319)), closes [#1105](https://github.com/char0n/ramda-adjunct/issues/1105)
|
|
195
|
+
* **string:** add trimEnd ([#1134](https://github.com/char0n/ramda-adjunct/issues/1134)) ([4b8ec88](https://github.com/char0n/ramda-adjunct/commit/4b8ec88)), closes [#808](https://github.com/char0n/ramda-adjunct/issues/808)
|
|
196
|
+
* **string:** add trimStart ([#1116](https://github.com/char0n/ramda-adjunct/issues/1116)) ([6ba2882](https://github.com/char0n/ramda-adjunct/commit/6ba2882)), closes [#808](https://github.com/char0n/ramda-adjunct/issues/808)
|
|
197
|
+
* **type:** add isSafeInteger ([#1112](https://github.com/char0n/ramda-adjunct/issues/1112)) ([bcb1f98](https://github.com/char0n/ramda-adjunct/commit/bcb1f98)), closes [#747](https://github.com/char0n/ramda-adjunct/issues/747)
|
|
198
|
+
* **type:** add isMap ([#1120](https://github.com/char0n/ramda-adjunct/issues/1120)) ([fdd932a](https://github.com/char0n/ramda-adjunct/commit/fdd932a)), closes [#1113](https://github.com/char0n/ramda-adjunct/issues/1113)
|
|
199
|
+
* **type:** add isNegativeZero ([#1109](https://github.com/char0n/ramda-adjunct/issues/1109)) ([d209ac5](https://github.com/char0n/ramda-adjunct/commit/d209ac5)), closes [#784](https://github.com/char0n/ramda-adjunct/issues/784)
|
|
200
|
+
* **type:** add isSet ([#1114](https://github.com/char0n/ramda-adjunct/issues/1114)) ([00d6347](https://github.com/char0n/ramda-adjunct/commit/00d6347)), closes [#1110](https://github.com/char0n/ramda-adjunct/issues/1110)
|
|
201
|
+
* **type:** add isSymbol ([#1079](https://github.com/char0n/ramda-adjunct/issues/1079)) ([49268f9](https://github.com/char0n/ramda-adjunct/commit/49268f9)), closes [#806](https://github.com/char0n/ramda-adjunct/issues/806)
|
|
202
|
+
* **type:** isPositiveZero ([#1111](https://github.com/char0n/ramda-adjunct/issues/1111)) ([337c9d3](https://github.com/char0n/ramda-adjunct/commit/337c9d3))
|
|
203
|
+
|
|
204
|
+
|
|
205
|
+
|
|
206
|
+
<a name="2.21.0"></a>
|
|
207
|
+
# [2.21.0](https://github.com/char0n/ramda-adjunct/compare/v2.20.0...v2.21.0) (2019-09-25)
|
|
208
|
+
|
|
209
|
+
|
|
210
|
+
### Features
|
|
211
|
+
|
|
212
|
+
* **string:** add escapeRegExp ([6b676af](https://github.com/char0n/ramda-adjunct/commit/6b676af)), closes [#880](https://github.com/char0n/ramda-adjunct/issues/880)
|
|
213
|
+
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
<a name="2.20.0"></a>
|
|
217
|
+
# [2.20.0](https://github.com/char0n/ramda-adjunct/compare/v2.19.2...v2.20.0) (2019-09-08)
|
|
218
|
+
|
|
219
|
+
|
|
220
|
+
### Features
|
|
221
|
+
|
|
222
|
+
* **logic:** add nor ([#1023](https://github.com/char0n/ramda-adjunct/issues/1023)) ([608ff01](https://github.com/char0n/ramda-adjunct/commit/608ff01)), closes [#285](https://github.com/char0n/ramda-adjunct/issues/285)
|
|
223
|
+
* **type:** add isSparseArray predicate ([f8d439b](https://github.com/char0n/ramda-adjunct/commit/f8d439b)), closes [#785](https://github.com/char0n/ramda-adjunct/issues/785)
|
|
224
|
+
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
<a name="2.19.3"></a>
|
|
228
|
+
## [2.19.3](https://github.com/char0n/ramda-adjunct/compare/v2.19.2...v2.19.3) (2019-08-28)
|
|
229
|
+
|
|
230
|
+
* remove donations from postinstall script ([9acaf53](https://github.com/char0n/ramda-adjunct/commit/9acaf53))
|
|
231
|
+
|
|
232
|
+
|
|
233
|
+
<a name="2.19.2"></a>
|
|
234
|
+
## [2.19.2](https://github.com/char0n/ramda-adjunct/compare/v2.19.1...v2.19.2) (2019-08-27)
|
|
235
|
+
|
|
236
|
+
|
|
237
|
+
### Bug Fixes
|
|
238
|
+
|
|
239
|
+
* include donate script into npm distribution ([e477be3](https://github.com/char0n/ramda-adjunct/commit/e477be3))
|
|
240
|
+
|
|
241
|
+
|
|
242
|
+
|
|
243
|
+
<a name="2.19.1"></a>
|
|
244
|
+
## [2.19.1](https://github.com/char0n/ramda-adjunct/compare/v2.19.0...v2.19.1) (2019-08-27)
|
|
245
|
+
|
|
246
|
+
* **opencollective:** remove opencollective as dependency ([35f46ce](https://github.com/char0n/ramda-adjunct/commit/35f46ce)), closes [#1021](https://github.com/char0n/ramda-adjunct/issues/1021)
|
|
247
|
+
|
|
248
|
+
<a name="2.19.0"></a>
|
|
249
|
+
# [2.19.0](https://github.com/char0n/ramda-adjunct/compare/v2.18.0...v2.19.0) (2019-08-12)
|
|
250
|
+
|
|
251
|
+
|
|
252
|
+
### Features
|
|
253
|
+
|
|
254
|
+
* **isNotFloat:** add support for ramda placeholder ([4b9934f](https://github.com/char0n/ramda-adjunct/commit/4b9934f)), closes [#624](https://github.com/char0n/ramda-adjunct/issues/624)
|
|
255
|
+
* add flattenDepth ([#946](https://github.com/char0n/ramda-adjunct/issues/946)) ([3c4651a](https://github.com/char0n/ramda-adjunct/commit/3c4651a)), closes [#844](https://github.com/char0n/ramda-adjunct/issues/844)
|
|
256
|
+
* **logic:** add nand ([#952](https://github.com/char0n/ramda-adjunct/issues/952)) ([7931fa0](https://github.com/char0n/ramda-adjunct/commit/7931fa0)), closes [#237](https://github.com/char0n/ramda-adjunct/issues/237)
|
|
257
|
+
|
|
258
|
+
|
|
259
|
+
|
|
260
|
+
<a name="2.18.0"></a>
|
|
261
|
+
# [2.18.0](https://github.com/char0n/ramda-adjunct/compare/v2.17.0...v2.18.0) (2019-05-26)
|
|
262
|
+
|
|
263
|
+
|
|
264
|
+
### Bug Fixes
|
|
265
|
+
|
|
266
|
+
* **mergePath:** fix TS typings ([#928](https://github.com/char0n/ramda-adjunct/issues/928)) ([4aebb39](https://github.com/char0n/ramda-adjunct/commit/4aebb39)), closes [#925](https://github.com/char0n/ramda-adjunct/issues/925)
|
|
267
|
+
|
|
268
|
+
|
|
269
|
+
### Features
|
|
270
|
+
|
|
271
|
+
* add isIterable ([#935](https://github.com/char0n/ramda-adjunct/issues/935)) ([8a67554](https://github.com/char0n/ramda-adjunct/commit/8a67554)), closes [#351](https://github.com/char0n/ramda-adjunct/issues/351)
|
|
272
|
+
* **cata:** add support for more catamorphic types ([adc3d11](https://github.com/char0n/ramda-adjunct/commit/adc3d11)), closes [#922](https://github.com/char0n/ramda-adjunct/issues/922)
|
|
273
|
+
* add allSettledP ([1e56c50](https://github.com/char0n/ramda-adjunct/commit/1e56c50)), closes [#761](https://github.com/char0n/ramda-adjunct/issues/761)
|
|
274
|
+
* add isNotNilOrEmpty ([#912](https://github.com/char0n/ramda-adjunct/issues/912)) ([3fedee4](https://github.com/char0n/ramda-adjunct/commit/3fedee4)), closes [#70](https://github.com/char0n/ramda-adjunct/issues/70)
|
|
275
|
+
* **isNegative:** add support Ramda placeholder ([86b7e1c](https://github.com/char0n/ramda-adjunct/commit/86b7e1c)), closes [#624](https://github.com/char0n/ramda-adjunct/issues/624)
|
|
276
|
+
* **isNilOrEmpty:** add support for Ramda placeholder ([22f4ec2](https://github.com/char0n/ramda-adjunct/commit/22f4ec2)), closes [#624](https://github.com/char0n/ramda-adjunct/issues/624)
|
|
277
|
+
* **isNonNegative:** add support for Ramda placeholder ([87f97de](https://github.com/char0n/ramda-adjunct/commit/87f97de)), closes [#624](https://github.com/char0n/ramda-adjunct/issues/624)
|
|
278
|
+
* **isNonPositive:** add support for Ramda placeholder ([b6b358f](https://github.com/char0n/ramda-adjunct/commit/b6b358f)), closes [#624](https://github.com/char0n/ramda-adjunct/issues/624)
|
|
279
|
+
|
|
280
|
+
|
|
281
|
+
|
|
282
|
+
<a name="2.17.0"></a>
|
|
283
|
+
# [2.17.0](https://github.com/char0n/ramda-adjunct/compare/v2.16.1...v2.17.0) (2019-04-14)
|
|
284
|
+
|
|
285
|
+
|
|
286
|
+
### Features
|
|
287
|
+
|
|
288
|
+
* add replaceAll ([84c7066](https://github.com/char0n/ramda-adjunct/commit/84c7066)), closes [#878](https://github.com/char0n/ramda-adjunct/issues/878)
|
|
289
|
+
|
|
290
|
+
|
|
291
|
+
|
|
292
|
+
<a name="2.16.1"></a>
|
|
293
|
+
## [2.16.1](https://github.com/char0n/ramda-adjunct/compare/v2.16.0...v2.16.1) (2019-02-19)
|
|
294
|
+
|
|
295
|
+
|
|
296
|
+
### Bug Fixes
|
|
297
|
+
|
|
298
|
+
* **typings:** remove accidental import ([3e7bfae](https://github.com/char0n/ramda-adjunct/commit/3e7bfae)), closes [#838](https://github.com/char0n/ramda-adjunct/issues/838)
|
|
299
|
+
|
|
300
|
+
|
|
301
|
+
|
|
302
|
+
<a name="2.16.0"></a>
|
|
303
|
+
# [2.16.0](https://github.com/char0n/ramda-adjunct/compare/v2.15.0...v2.16.0) (2019-02-17)
|
|
304
|
+
|
|
305
|
+
|
|
306
|
+
### Features
|
|
307
|
+
|
|
308
|
+
* add async ([cbd709f](https://github.com/char0n/ramda-adjunct/commit/cbd709f)), closes [#830](https://github.com/char0n/ramda-adjunct/issues/830)
|
|
309
|
+
|
|
310
|
+
|
|
311
|
+
|
|
312
|
+
<a name="2.15.0"></a>
|
|
313
|
+
# [2.15.0](https://github.com/char0n/ramda-adjunct/compare/v2.14.0...v2.15.0) (2019-02-10)
|
|
314
|
+
|
|
315
|
+
|
|
316
|
+
### Features
|
|
317
|
+
|
|
318
|
+
* add ceil ([d9dee2b](https://github.com/char0n/ramda-adjunct/commit/d9dee2b)), closes [#748](https://github.com/char0n/ramda-adjunct/issues/748)
|
|
319
|
+
* add floor ([0ce6fbe](https://github.com/char0n/ramda-adjunct/commit/0ce6fbe)), closes [#748](https://github.com/char0n/ramda-adjunct/issues/748)
|
|
320
|
+
* add round ([eab931c](https://github.com/char0n/ramda-adjunct/commit/eab931c)), closes [#106](https://github.com/char0n/ramda-adjunct/issues/106)
|
|
321
|
+
* add sign ([6d2a080](https://github.com/char0n/ramda-adjunct/commit/6d2a080)), closes [#748](https://github.com/char0n/ramda-adjunct/issues/748)
|
|
322
|
+
* add trunc ([ddfb12e](https://github.com/char0n/ramda-adjunct/commit/ddfb12e)), closes [#748](https://github.com/char0n/ramda-adjunct/issues/748)
|
|
323
|
+
|
|
324
|
+
|
|
325
|
+
|
|
326
|
+
<a name="2.14.0"></a>
|
|
327
|
+
# [2.14.0](https://github.com/char0n/ramda-adjunct/compare/v2.13.0...v2.14.0) (2019-01-24)
|
|
328
|
+
|
|
329
|
+
|
|
330
|
+
### Features
|
|
331
|
+
|
|
332
|
+
* **dispatch:** add support for currying ([6187992](https://github.com/char0n/ramda-adjunct/commit/6187992))
|
|
333
|
+
* **isArrayLike:** add support for currying ([a3e843c](https://github.com/char0n/ramda-adjunct/commit/a3e843c))
|
|
334
|
+
* **isAsyncFunction:** add support for ramda placeholder ([4747e6a](https://github.com/char0n/ramda-adjunct/commit/4747e6a)), closes [#624](https://github.com/char0n/ramda-adjunct/issues/624)
|
|
335
|
+
* **isBoolean:** add ramda placeholder support ([3c7ee1c](https://github.com/char0n/ramda-adjunct/commit/3c7ee1c)), closes [#624](https://github.com/char0n/ramda-adjunct/issues/624)
|
|
336
|
+
* **isDate:** add ramda placeholder support ([96d0772](https://github.com/char0n/ramda-adjunct/commit/96d0772)), closes [#624](https://github.com/char0n/ramda-adjunct/issues/624)
|
|
337
|
+
* **isEven:** add support for ramda placeholder ([47aae9c](https://github.com/char0n/ramda-adjunct/commit/47aae9c)), closes [#624](https://github.com/char0n/ramda-adjunct/issues/624)
|
|
338
|
+
* **isFinite:** add support for ramda placeholder ([3c8b161](https://github.com/char0n/ramda-adjunct/commit/3c8b161)), closes [#624](https://github.com/char0n/ramda-adjunct/issues/624)
|
|
339
|
+
* **isFloat:** add support for ramda placeholder ([8374ba9](https://github.com/char0n/ramda-adjunct/commit/8374ba9)), closes [#624](https://github.com/char0n/ramda-adjunct/issues/624)
|
|
340
|
+
* **isGeneratorFunction:** add support ramda placeholder ([84e8816](https://github.com/char0n/ramda-adjunct/commit/84e8816)), closes [#624](https://github.com/char0n/ramda-adjunct/issues/624)
|
|
341
|
+
* **isInteger:** add support for ramda placeholder ([69d9f2c](https://github.com/char0n/ramda-adjunct/commit/69d9f2c)), closes [#624](https://github.com/char0n/ramda-adjunct/issues/624)
|
|
342
|
+
* **isNaN:** add support for ramda placeholder ([ec09c4c](https://github.com/char0n/ramda-adjunct/commit/ec09c4c)), closes [#624](https://github.com/char0n/ramda-adjunct/issues/624)
|
|
343
|
+
|
|
344
|
+
|
|
345
|
+
|
|
346
|
+
<a name="2.13.0"></a>
|
|
347
|
+
# [2.13.0](https://github.com/char0n/ramda-adjunct/compare/v2.12.0...v2.13.0) (2018-12-08)
|
|
348
|
+
|
|
349
|
+
|
|
350
|
+
### Bug Fixes
|
|
351
|
+
|
|
352
|
+
* **isBoolean:** make this predicate work in different realms ([b89ade0](https://github.com/char0n/ramda-adjunct/commit/b89ade0)), closes [#724](https://github.com/char0n/ramda-adjunct/issues/724)
|
|
353
|
+
* **isDate:** make this predicate work in different realms ([1963c2d](https://github.com/char0n/ramda-adjunct/commit/1963c2d)), closes [#724](https://github.com/char0n/ramda-adjunct/issues/724)
|
|
354
|
+
* **isRegExp:** make this predicate work in different realms ([f0150a9](https://github.com/char0n/ramda-adjunct/commit/f0150a9)), closes [#724](https://github.com/char0n/ramda-adjunct/issues/724)
|
|
355
|
+
|
|
356
|
+
|
|
357
|
+
### Features
|
|
358
|
+
|
|
359
|
+
* add support for ramda@0.26.1 ([2de8c22](https://github.com/char0n/ramda-adjunct/commit/2de8c22))
|
|
360
|
+
|
|
361
|
+
|
|
362
|
+
|
|
363
|
+
<a name="2.12.0"></a>
|
|
364
|
+
# [2.12.0](https://github.com/char0n/ramda-adjunct/compare/v2.11.0...v2.12.0) (2018-11-25)
|
|
365
|
+
|
|
366
|
+
### Bug Fixes
|
|
367
|
+
|
|
368
|
+
* **renameKeysWith**: use lenses instead of adjust to support ramda@0.26.0 ([43839f3](https://github.com/char0n/ramda-adjunct/commit/43839f3))
|
|
369
|
+
|
|
370
|
+
### Features
|
|
371
|
+
|
|
372
|
+
* add support for ramda@0.26.0 ([7849c62](https://github.com/char0n/ramda-adjunct/commit/7849c62))
|
|
373
|
+
* deprecate `contained`; add new alias to `contained` as `included` ([c8ef8a4](https://github.com/char0n/ramda-adjunct/commit/c8ef8a4))
|
|
374
|
+
* deprecate `hasPath`; ramda@0.26.0 contains it as `R.hasPath` ([2f475d2](https://github.com/char0n/ramda-adjunct/commit/2f475d2))
|
|
375
|
+
* deprecate `mergeRight`; add new alias to `mergeRight` as `mergeLeft`; ramda@0.26.0 contains it as `R.mergeLeft` ([7849c62](https://github.com/char0n/ramda-adjunct/commit/7849c62))
|
|
376
|
+
* deprecate `thenP`; ramda@0.26.0 contains it as `R.then` ([a4c3475](https://github.com/char0n/ramda-adjunct/commit/a4c3475))
|
|
377
|
+
* add alias `then` to `thenP` ([3ebd1ee](https://github.com/char0n/ramda-adjunct/commit/3ebd1ee))
|
|
378
|
+
|
|
379
|
+
|
|
380
|
+
<a name="2.11.0"></a>
|
|
381
|
+
# [2.11.0](https://github.com/char0n/ramda-adjunct/compare/v2.10.0...v2.11.0) (2018-10-28)
|
|
382
|
+
|
|
383
|
+
|
|
384
|
+
### Features
|
|
385
|
+
|
|
386
|
+
* add allEqualTo ([d14dac9](https://github.com/char0n/ramda-adjunct/commit/d14dac9)), closes [#525](https://github.com/char0n/ramda-adjunct/issues/525)
|
|
387
|
+
* add allIdentical ([c5267f5](https://github.com/char0n/ramda-adjunct/commit/c5267f5)), closes [#578](https://github.com/char0n/ramda-adjunct/issues/578)
|
|
388
|
+
* add allIdenticalTo ([fb61085](https://github.com/char0n/ramda-adjunct/commit/fb61085)), closes [#525](https://github.com/char0n/ramda-adjunct/issues/525)
|
|
389
|
+
* add repeatStr ([f1c5dfa](https://github.com/char0n/ramda-adjunct/commit/f1c5dfa)), closes [#667](https://github.com/char0n/ramda-adjunct/issues/667)
|
|
390
|
+
|
|
391
|
+
|
|
392
|
+
|
|
393
|
+
<a name="2.10.0"></a>
|
|
394
|
+
# [2.10.0](https://github.com/char0n/ramda-adjunct/compare/v2.9.0...v2.10.0) (2018-09-09)
|
|
395
|
+
|
|
396
|
+
|
|
397
|
+
### Features
|
|
398
|
+
|
|
399
|
+
* add dropArgs ([197b3f1](https://github.com/char0n/ramda-adjunct/commit/197b3f1)), closes [#679](https://github.com/char0n/ramda-adjunct/issues/679)
|
|
400
|
+
* add support for ramda placeholder ([9539e92](https://github.com/char0n/ramda-adjunct/commit/9539e92)), closes [#624](https://github.com/char0n/ramda-adjunct/issues/624)
|
|
401
|
+
|
|
402
|
+
|
|
403
|
+
|
|
404
|
+
<a name="2.9.0"></a>
|
|
405
|
+
# [2.9.0](https://github.com/char0n/ramda-adjunct/compare/v2.8.0...v2.9.0) (2018-05-29)
|
|
406
|
+
|
|
407
|
+
|
|
408
|
+
### Features
|
|
409
|
+
|
|
410
|
+
* add allEqual ([#572](https://github.com/char0n/ramda-adjunct/issues/572)) ([c362939](https://github.com/char0n/ramda-adjunct/commit/c362939))
|
|
411
|
+
|
|
412
|
+
|
|
413
|
+
|
|
414
|
+
<a name="2.8.0"></a>
|
|
415
|
+
# [2.8.0](https://github.com/char0n/ramda-adjunct/compare/v2.7.0...v2.8.0) (2018-05-13)
|
|
416
|
+
|
|
417
|
+
|
|
418
|
+
### Features
|
|
419
|
+
|
|
420
|
+
* add contained ([#510](https://github.com/char0n/ramda-adjunct/issues/510)) ([381f2df](https://github.com/char0n/ramda-adjunct/commit/381f2df)), closes [#392](https://github.com/char0n/ramda-adjunct/issues/392)
|
|
421
|
+
* add lengthEq and lengthNotEq ([#552](https://github.com/char0n/ramda-adjunct/issues/552)) ([f71ad1e](https://github.com/char0n/ramda-adjunct/commit/f71ad1e)), closes [#444](https://github.com/char0n/ramda-adjunct/issues/444)
|
|
422
|
+
* add lengthLt, lengthGt, lengthLte, lengthGte ([47d4560](https://github.com/char0n/ramda-adjunct/commit/47d4560))
|
|
423
|
+
* add move ([#507](https://github.com/char0n/ramda-adjunct/issues/507)) ([22ecfc0](https://github.com/char0n/ramda-adjunct/commit/22ecfc0)), closes [#485](https://github.com/char0n/ramda-adjunct/issues/485)
|
|
424
|
+
* add thenP ([#551](https://github.com/char0n/ramda-adjunct/issues/551)) ([92ba7b5](https://github.com/char0n/ramda-adjunct/commit/92ba7b5)), closes [#35](https://github.com/char0n/ramda-adjunct/issues/35)
|
|
425
|
+
|
|
426
|
+
|
|
427
|
+
|
|
428
|
+
<a name="2.7.0"></a>
|
|
429
|
+
# [2.7.0](https://github.com/char0n/ramda-adjunct/compare/v2.6.0...v2.7.0) (2018-04-25)
|
|
430
|
+
|
|
431
|
+
|
|
432
|
+
### Features
|
|
433
|
+
|
|
434
|
+
* add argsPass ([#437](https://github.com/char0n/ramda-adjunct/issues/437)) ([f7d7f7c](https://github.com/char0n/ramda-adjunct/commit/f7d7f7c)), closes [#370](https://github.com/char0n/ramda-adjunct/issues/370)
|
|
435
|
+
* add inRange ([#436](https://github.com/char0n/ramda-adjunct/issues/436)) ([9937600](https://github.com/char0n/ramda-adjunct/commit/9937600)), closes [#393](https://github.com/char0n/ramda-adjunct/issues/393)
|
|
436
|
+
* add traversable lenses ([#494](https://github.com/char0n/ramda-adjunct/issues/494)) ([d34be73](https://github.com/char0n/ramda-adjunct/commit/d34be73))
|
|
437
|
+
|
|
438
|
+
|
|
439
|
+
|
|
440
|
+
<a name="2.6.0"></a>
|
|
441
|
+
# [2.6.0](https://github.com/char0n/ramda-adjunct/compare/v2.5.0...v2.6.0) (2018-03-19)
|
|
442
|
+
|
|
443
|
+
|
|
444
|
+
### Features
|
|
445
|
+
|
|
446
|
+
* add concatAll ([#404](https://github.com/char0n/ramda-adjunct/issues/404)) ([341f3f1](https://github.com/char0n/ramda-adjunct/commit/341f3f1)), closes [#109](https://github.com/char0n/ramda-adjunct/issues/109)
|
|
447
|
+
* add dispatch ([#407](https://github.com/char0n/ramda-adjunct/issues/407)) ([fb5aa08](https://github.com/char0n/ramda-adjunct/commit/fb5aa08)), closes [#66](https://github.com/char0n/ramda-adjunct/issues/66)
|
|
448
|
+
* add ensureArray ([#375](https://github.com/char0n/ramda-adjunct/issues/375)) ([7b60189](https://github.com/char0n/ramda-adjunct/commit/7b60189)), closes [#371](https://github.com/char0n/ramda-adjunct/issues/371)
|
|
449
|
+
* add isNonPositive, isNonNegative ([#434](https://github.com/char0n/ramda-adjunct/issues/434)) ([8d62dc1](https://github.com/char0n/ramda-adjunct/commit/8d62dc1)), closes [#324](https://github.com/char0n/ramda-adjunct/issues/324)
|
|
450
|
+
* add isTrue, isFalse ([#435](https://github.com/char0n/ramda-adjunct/issues/435)) ([9687b51](https://github.com/char0n/ramda-adjunct/commit/9687b51)), closes [#255](https://github.com/char0n/ramda-adjunct/issues/255)
|
|
451
|
+
* add omitBy ([#376](https://github.com/char0n/ramda-adjunct/issues/376)) ([c7c9c7e](https://github.com/char0n/ramda-adjunct/commit/c7c9c7e)), closes [#171](https://github.com/char0n/ramda-adjunct/issues/171)
|
|
452
|
+
|
|
453
|
+
|
|
454
|
+
|
|
455
|
+
<a name="2.5.0"></a>
|
|
456
|
+
# [2.5.0](https://github.com/char0n/ramda-adjunct/compare/v2.4.1...v2.5.0) (2018-02-14)
|
|
457
|
+
|
|
458
|
+
|
|
459
|
+
### Bug Fixes
|
|
460
|
+
|
|
461
|
+
* remove defaults from mergeRight aliases ([#344](https://github.com/char0n/ramda-adjunct/issues/344)) ([6e13e7c](https://github.com/char0n/ramda-adjunct/commit/6e13e7c)), closes [#338](https://github.com/char0n/ramda-adjunct/issues/338)
|
|
462
|
+
|
|
463
|
+
|
|
464
|
+
### Features
|
|
465
|
+
|
|
466
|
+
* **nonePass:** Add complement of Ramda’s anyPass ([#327](https://github.com/char0n/ramda-adjunct/issues/327)) ([6b875ea](https://github.com/char0n/ramda-adjunct/commit/6b875ea)), closes [#234](https://github.com/char0n/ramda-adjunct/issues/234)
|
|
467
|
+
* add appendFlipped ([#347](https://github.com/char0n/ramda-adjunct/issues/347)) ([9a30238](https://github.com/char0n/ramda-adjunct/commit/9a30238)), closes [#333](https://github.com/char0n/ramda-adjunct/issues/333)
|
|
468
|
+
* add compact ([#331](https://github.com/char0n/ramda-adjunct/issues/331)) ([865a2ce](https://github.com/char0n/ramda-adjunct/commit/865a2ce)), closes [#127](https://github.com/char0n/ramda-adjunct/issues/127)
|
|
469
|
+
* add mapIndexed ([#345](https://github.com/char0n/ramda-adjunct/issues/345)) ([3fcd0c2](https://github.com/char0n/ramda-adjunct/commit/3fcd0c2)), closes [#282](https://github.com/char0n/ramda-adjunct/issues/282)
|
|
470
|
+
* add reduceIndexed ([#357](https://github.com/char0n/ramda-adjunct/issues/357)) ([ea6fd59](https://github.com/char0n/ramda-adjunct/commit/ea6fd59)), closes [#281](https://github.com/char0n/ramda-adjunct/issues/281)
|
|
471
|
+
* add isRegExp ([#346](https://github.com/char0n/ramda-adjunct/issues/325)) ([3ad18cd](https://github.com/char0n/ramda-adjunct/commit/3ad18cd)), closes [#325](https://github.com/char0n/ramda-adjunct/issues/325)
|
|
472
|
+
* add isNotRegExp ([#346](https://github.com/char0n/ramda-adjunct/issues/325)) ([3ad18cd](https://github.com/char0n/ramda-adjunct/commit/3ad18cd)), closes [#325](https://github.com/char0n/ramda-adjunct/issues/325)
|
|
473
|
+
|
|
474
|
+
|
|
475
|
+
|
|
476
|
+
|
|
477
|
+
<a name="2.4.1"></a>
|
|
478
|
+
## [2.4.1](https://github.com/char0n/ramda-adjunct/compare/v2.4.0...v2.4.1) (2018-01-25)
|
|
479
|
+
|
|
480
|
+
* fix failed build for 2.4.0 release
|
|
481
|
+
|
|
482
|
+
|
|
483
|
+
<a name="2.4.0"></a>
|
|
484
|
+
# [2.4.0](https://github.com/char0n/ramda-adjunct/compare/v2.3.0...v2.4.0) (2018-01-24)
|
|
485
|
+
|
|
486
|
+
|
|
487
|
+
### Features
|
|
488
|
+
|
|
489
|
+
* add isEmptyArray ([#288](https://github.com/char0n/ramda-adjunct/issues/288)) ([961692e](https://github.com/char0n/ramda-adjunct/commit/961692e)), closes [#279](https://github.com/char0n/ramda-adjunct/issues/279)
|
|
490
|
+
* add isEmptyString ([08d80e9](https://github.com/char0n/ramda-adjunct/commit/08d80e9)), closes [#40](https://github.com/char0n/ramda-adjunct/issues/40)
|
|
491
|
+
* add isNonEmptyArray ([#289](https://github.com/char0n/ramda-adjunct/issues/289)) ([464060e](https://github.com/char0n/ramda-adjunct/commit/464060e)), closes [#279](https://github.com/char0n/ramda-adjunct/issues/279)
|
|
492
|
+
* add isNonEmptyString ([#299](https://github.com/char0n/ramda-adjunct/issues/299)) ([cd94a5f](https://github.com/char0n/ramda-adjunct/commit/cd94a5f)), closes [#40](https://github.com/char0n/ramda-adjunct/issues/40)
|
|
493
|
+
* add notAllPass ([#308](https://github.com/char0n/ramda-adjunct/issues/308)) ([2aa3d2f](https://github.com/char0n/ramda-adjunct/commit/2aa3d2f)), closes [#234](https://github.com/char0n/ramda-adjunct/issues/234)
|
|
494
|
+
* add pathNotEq ([#297](https://github.com/char0n/ramda-adjunct/issues/297)) ([fc0716f](https://github.com/char0n/ramda-adjunct/commit/fc0716f)), closes [#217](https://github.com/char0n/ramda-adjunct/issues/217)
|
|
495
|
+
|
|
496
|
+
|
|
497
|
+
|
|
498
|
+
<a name="2.3.0"></a>
|
|
499
|
+
# [2.3.0](https://github.com/char0n/ramda-adjunct/compare/v2.2.0...v2.3.0) (2018-01-14)
|
|
500
|
+
|
|
501
|
+
|
|
502
|
+
### Features
|
|
503
|
+
|
|
504
|
+
* add notBoth ([#260](https://github.com/char0n/ramda-adjunct/issues/260)) ([a214f75](https://github.com/char0n/ramda-adjunct/commit/a214f75)), closes [#234](https://github.com/char0n/ramda-adjunct/issues/234)
|
|
505
|
+
* add allP ([#269](https://github.com/char0n/ramda-adjunct/issues/269)) ([c430af6](https://github.com/char0n/ramda-adjunct/commit/c430af6)), closes [#35](https://github.com/char0n/ramda-adjunct/issues/35)
|
|
506
|
+
* add neither ([#273](https://github.com/char0n/ramda-adjunct/issues/273)) ([5294011](https://github.com/char0n/ramda-adjunct/commit/5294011)), closes [#234](https://github.com/char0n/ramda-adjunct/issues/234)
|
|
507
|
+
* add propNotEq ([#275](https://github.com/char0n/ramda-adjunct/issues/275)) ([82da044](https://github.com/char0n/ramda-adjunct/commit/82da044)), closes [#238](https://github.com/char0n/ramda-adjunct/issues/238)
|
|
508
|
+
* add sequencing combinator ([#257](https://github.com/char0n/ramda-adjunct/issues/257)) ([04ffd3d](https://github.com/char0n/ramda-adjunct/commit/04ffd3d)), closes [#173](https://github.com/char0n/ramda-adjunct/issues/173)
|
|
509
|
+
* add Y combinator ([dbdf6af](https://github.com/char0n/ramda-adjunct/commit/dbdf6af)), closes [#130](https://github.com/char0n/ramda-adjunct/issues/130)
|
|
510
|
+
|
|
511
|
+
|
|
512
|
+
|
|
513
|
+
<a name="2.2.0"></a>
|
|
514
|
+
# [2.2.0](https://github.com/char0n/ramda-adjunct/compare/v2.1.0...v2.2.0) (2017-12-24)
|
|
515
|
+
|
|
516
|
+
|
|
517
|
+
### Features
|
|
518
|
+
|
|
519
|
+
* add defaultWhen ([#245](https://github.com/char0n/ramda-adjunct/issues/245)) ([3606048](https://github.com/char0n/ramda-adjunct/commit/3606048)), closes [#216](https://github.com/char0n/ramda-adjunct/issues/216)
|
|
520
|
+
* add isFalsy ([1612941](https://github.com/char0n/ramda-adjunct/commit/1612941)), closes [#66](https://github.com/char0n/ramda-adjunct/issues/66)
|
|
521
|
+
* add isTruthy ([f09f72e](https://github.com/char0n/ramda-adjunct/commit/f09f72e)), closes [#66](https://github.com/char0n/ramda-adjunct/issues/66)
|
|
522
|
+
* add isValidNumber, isNotValidNumber ([#247](https://github.com/char0n/ramda-adjunct/issues/247)) ([d94c1b5](https://github.com/char0n/ramda-adjunct/commit/d94c1b5)), closes [#235](https://github.com/char0n/ramda-adjunct/issues/235)
|
|
523
|
+
|
|
524
|
+
|
|
525
|
+
|
|
526
|
+
<a name="2.1.0"></a>
|
|
527
|
+
# [2.1.0](https://github.com/char0n/ramda-adjunct/compare/v2.0.0...v2.1.0) (2017-12-04)
|
|
528
|
+
|
|
529
|
+
|
|
530
|
+
### Features
|
|
531
|
+
|
|
532
|
+
* add stubArray ([44e9760](https://github.com/char0n/ramda-adjunct/commit/44e9760))
|
|
533
|
+
* add stubObj ([2fce473](https://github.com/char0n/ramda-adjunct/commit/2fce473))
|
|
534
|
+
* add stubString ([7dc4f39](https://github.com/char0n/ramda-adjunct/commit/7dc4f39))
|
|
535
|
+
* add isThenable ([b9f6e0d](https://github.com/char0n/ramda-adjunct/commit/b9f6e0d))
|
|
536
|
+
* add isPromise ([f00e93f](https://github.com/char0n/ramda-adjunct/commit/f00e93f))
|
|
537
|
+
|
|
538
|
+
|
|
539
|
+
|
|
540
|
+
<a name="2.0.0"></a>
|
|
541
|
+
# [2.0.0](https://github.com/char0n/ramda-adjunct/compare/v1.19.0...v2.0.0) (2017-11-19)
|
|
542
|
+
|
|
543
|
+
|
|
544
|
+
### Features
|
|
545
|
+
|
|
546
|
+
* add support for tree shaking ([baa62ea](https://github.com/char0n/ramda-adjunct/commit/baa62ea)), closes [#75](https://github.com/char0n/ramda-adjunct/issues/75)
|
|
547
|
+
* add search to documentation & improve the UI ([2ae5850](https://github.com/char0n/ramda-adjunct/commit/2ae5850)), closes [#24](https://github.com/char0n/ramda-adjunct/issues/24)
|
|
548
|
+
|
|
549
|
+
|
|
550
|
+
### BREAKING CHANGES
|
|
551
|
+
|
|
552
|
+
* Tree shaking support and imports
|
|
553
|
+
|
|
554
|
+
Before:
|
|
555
|
+
|
|
556
|
+
import RA from 'ramda-adjunct'
|
|
557
|
+
|
|
558
|
+
After:
|
|
559
|
+
|
|
560
|
+
import * as RA from 'ramda-adjunct'
|
|
561
|
+
|
|
562
|
+
|
|
563
|
+
|
|
564
|
+
<a name="1.19.0"></a>
|
|
565
|
+
# [1.19.0](https://github.com/char0n/ramda-adjunct/compare/v1.18.0...v1.19.0) (2017-10-31)
|
|
566
|
+
|
|
567
|
+
|
|
568
|
+
### Bug Fixes
|
|
569
|
+
|
|
570
|
+
* **pickIndexes:** omits values for non existing indexes ([cb82b9e](https://github.com/char0n/ramda-adjunct/commit/cb82b9e)), closes [#181](https://github.com/char0n/ramda-adjunct/issues/181)
|
|
571
|
+
* **typings:** add missed types to concatRight, sliceFrom, sliceTo, liftFN ([96a31cb](https://github.com/char0n/ramda-adjunct/commit/96a31cb)), closes [#176](https://github.com/char0n/ramda-adjunct/issues/176)
|
|
572
|
+
|
|
573
|
+
|
|
574
|
+
### Features
|
|
575
|
+
|
|
576
|
+
* add isPair, isNotPair ([#168](https://github.com/char0n/ramda-adjunct/issues/168)) ([6e6e6e5](https://github.com/char0n/ramda-adjunct/commit/6e6e6e5)), closes [#90](https://github.com/char0n/ramda-adjunct/issues/90)
|
|
577
|
+
* add lensIso ([#165](https://github.com/char0n/ramda-adjunct/issues/165)) ([0421890](https://github.com/char0n/ramda-adjunct/commit/0421890)), closes [#178](https://github.com/char0n/ramda-adjunct/issues/178)
|
|
578
|
+
* add flattenProp & flattenPath ([#182](https://github.com/char0n/ramda-adjunct/issues/182)) ([046cd02](https://github.com/char0n/ramda-adjunct/commit/046cd02))
|
|
579
|
+
* add spreadProp & spreadPath ([#183](https://github.com/char0n/ramda-adjunct/issues/183)) ([3e8db40](https://github.com/char0n/ramda-adjunct/commit/3e8db40))
|
|
580
|
+
* add omitIndexes ([#180](https://github.com/char0n/ramda-adjunct/issues/180)) ([d65a42d](https://github.com/char0n/ramda-adjunct/commit/d65a42d))
|
|
581
|
+
|
|
582
|
+
|
|
583
|
+
|
|
584
|
+
<a name="1.18.0"></a>
|
|
585
|
+
# [1.18.0](https://github.com/char0n/ramda-adjunct/compare/v1.17.0...v1.18.0) (2017-10-15)
|
|
586
|
+
|
|
587
|
+
|
|
588
|
+
### Features
|
|
589
|
+
|
|
590
|
+
* add isEven ([aff8308](https://github.com/char0n/ramda-adjunct/commit/aff8308)), closes [#98](https://github.com/char0n/ramda-adjunct/issues/98)
|
|
591
|
+
* add isOdd ([7d7cfcd](https://github.com/char0n/ramda-adjunct/commit/7d7cfcd))
|
|
592
|
+
* add mergePath, mergeProp ([2725289](https://github.com/char0n/ramda-adjunct/commit/2725289)), closes [#147](https://github.com/char0n/ramda-adjunct/issues/147)
|
|
593
|
+
|
|
594
|
+
|
|
595
|
+
|
|
596
|
+
<a name="1.17.0"></a>
|
|
597
|
+
# [1.17.0](https://github.com/char0n/ramda-adjunct/compare/v1.16.0...v1.17.0) (2017-09-24)
|
|
598
|
+
|
|
599
|
+
|
|
600
|
+
### Features
|
|
601
|
+
|
|
602
|
+
* add mergePaths ([dd8b681](https://github.com/char0n/ramda-adjunct/commit/dd8b681)), closes [#136](https://github.com/char0n/ramda-adjunct/issues/136)
|
|
603
|
+
* add mergeProps ([4c68054](https://github.com/char0n/ramda-adjunct/commit/4c68054))
|
|
604
|
+
|
|
605
|
+
|
|
606
|
+
|
|
607
|
+
<a name="1.16.0"></a>
|
|
608
|
+
# [1.16.0](https://github.com/char0n/ramda-adjunct/compare/v1.15.0...v1.16.0) (2017-09-19)
|
|
609
|
+
|
|
610
|
+
|
|
611
|
+
### Features
|
|
612
|
+
|
|
613
|
+
* add rejectP ([02451f3](https://github.com/char0n/ramda-adjunct/commit/02451f3))
|
|
614
|
+
* add resolveP ([9d057b1](https://github.com/char0n/ramda-adjunct/commit/9d057b1))
|
|
615
|
+
* add sliceFrom ([db3a1d2](https://github.com/char0n/ramda-adjunct/commit/db3a1d2))
|
|
616
|
+
* add sliceTo ([4408418](https://github.com/char0n/ramda-adjunct/commit/4408418))
|
|
617
|
+
|
|
618
|
+
|
|
619
|
+
|
|
620
|
+
<a name="1.15.0"></a>
|
|
621
|
+
# [1.15.0](https://github.com/char0n/ramda-adjunct/compare/v1.14.0...v1.15.0) (2017-09-10)
|
|
622
|
+
|
|
623
|
+
|
|
624
|
+
### Features
|
|
625
|
+
|
|
626
|
+
* add isNegative ([e593104](https://github.com/char0n/ramda-adjunct/commit/e593104))
|
|
627
|
+
* add isPositive ([040d335](https://github.com/char0n/ramda-adjunct/commit/040d335))
|
|
628
|
+
|
|
629
|
+
|
|
630
|
+
|
|
631
|
+
<a name="1.14.0"></a>
|
|
632
|
+
# [1.14.0](https://github.com/char0n/ramda-adjunct/compare/v1.13.0...v1.14.0) (2017-08-25)
|
|
633
|
+
|
|
634
|
+
|
|
635
|
+
### Bug Fixes
|
|
636
|
+
|
|
637
|
+
* **reduceP, reduceRightP:** fix logic for empty list ([6538444](https://github.com/char0n/ramda-adjunct/commit/6538444))
|
|
638
|
+
|
|
639
|
+
|
|
640
|
+
### Features
|
|
641
|
+
|
|
642
|
+
* **Identity:** add contravariant fantasy-land specification ([1bd5beb](https://github.com/char0n/ramda-adjunct/commit/1bd5beb))
|
|
643
|
+
* add hasPath ([06c7364](https://github.com/char0n/ramda-adjunct/commit/06c7364)), closes [#125](https://github.com/char0n/ramda-adjunct/issues/125)
|
|
644
|
+
* add isFloat ([40d74e6](https://github.com/char0n/ramda-adjunct/commit/40d74e6))
|
|
645
|
+
* add isNotFloat ([652d317](https://github.com/char0n/ramda-adjunct/commit/652d317))
|
|
646
|
+
|
|
647
|
+
|
|
648
|
+
|
|
649
|
+
<a name="1.13.0"></a>
|
|
650
|
+
# [1.13.0](https://github.com/char0n/ramda-adjunct/compare/v1.12.0...v1.13.0) (2017-08-15)
|
|
651
|
+
|
|
652
|
+
|
|
653
|
+
### Bug Fixes
|
|
654
|
+
|
|
655
|
+
* **defaults:** fix wrong logic ([fbc373f](https://github.com/char0n/ramda-adjunct/commit/fbc373f))
|
|
656
|
+
* **docs:** fix version in JSDOC ([4696ae2](https://github.com/char0n/ramda-adjunct/commit/4696ae2))
|
|
657
|
+
* **reduceRightP:** compensate for older versions of ramda ([3e5b327](https://github.com/char0n/ramda-adjunct/commit/3e5b327))
|
|
658
|
+
|
|
659
|
+
|
|
660
|
+
### Features
|
|
661
|
+
|
|
662
|
+
* **reduceP** ([d721126](https://github.com/char0n/ramda-adjunct/commit/d721126))
|
|
663
|
+
* **reduceRightP** ([81d3d09](https://github.com/char0n/ramda-adjunct/commit/81d3d09)), closes [#114](https://github.com/char0n/ramda-adjunct/issues/114)
|
|
664
|
+
* **lenses:** lensSatisfies & lensNotSatisfy ([1c351c2](https://github.com/char0n/ramda-adjunct/commit/1c351c2))
|
|
665
|
+
* **viewOr** ([f494dc1](https://github.com/char0n/ramda-adjunct/commit/f494dc1))
|
|
666
|
+
* **lenses:** lensEq & lensNotEq ([7dd4b20](https://github.com/char0n/ramda-adjunct/commit/7dd4b20))
|
|
667
|
+
|
|
668
|
+
|
|
669
|
+
|
|
670
|
+
<a name="1.12.0"></a>
|
|
671
|
+
# [1.12.0](https://github.com/char0n/ramda-adjunct/compare/v1.11.0...v1.12.0) (2017-07-30)
|
|
672
|
+
|
|
673
|
+
|
|
674
|
+
### Features
|
|
675
|
+
|
|
676
|
+
* add curryRight ([0988114](https://github.com/char0n/ramda-adjunct/commit/0988114))
|
|
677
|
+
* add curryRightN ([c8c9dd5](https://github.com/char0n/ramda-adjunct/commit/c8c9dd5))
|
|
678
|
+
|
|
679
|
+
|
|
680
|
+
|
|
681
|
+
<a name="1.11.0"></a>
|
|
682
|
+
# [1.11.0](https://github.com/char0n/ramda-adjunct/compare/v1.10.2...v1.11.0) (2017-07-23)
|
|
683
|
+
|
|
684
|
+
|
|
685
|
+
### Features
|
|
686
|
+
|
|
687
|
+
* add concatRight ([7628612](https://github.com/char0n/ramda-adjunct/commit/7628612)), closes [#93](https://github.com/char0n/ramda-adjunct/issues/93)
|
|
688
|
+
* **Identity:** add Ord fantasy-land spec ([76d94d7](https://github.com/char0n/ramda-adjunct/commit/76d94d7))
|
|
689
|
+
* **Identity:** add partial Monoid* specification ([da1f379](https://github.com/char0n/ramda-adjunct/commit/da1f379))
|
|
690
|
+
|
|
691
|
+
|
|
692
|
+
|
|
693
|
+
<a name="1.10.2"></a>
|
|
694
|
+
## [1.10.2](https://github.com/char0n/ramda-adjunct/compare/v1.10.0...v1.10.2) (2017-06-20)
|
|
695
|
+
|
|
696
|
+
* fixes crashed build for 1.10.1
|
|
697
|
+
|
|
698
|
+
<a name="1.10.1"></a>
|
|
699
|
+
# [1.10.1](https://github.com/char0n/ramda-adjunct/compare/v1.10.0...v1.10.1) (2017-06-20)
|
|
700
|
+
|
|
701
|
+
* fixes crashed build for 1.10.0
|
|
702
|
+
|
|
703
|
+
<a name="1.10.0"></a>
|
|
704
|
+
# [1.10.0](https://github.com/char0n/ramda-adjunct/compare/v1.9.0...v1.10.0) (2017-06-20)
|
|
705
|
+
|
|
706
|
+
|
|
707
|
+
### Features
|
|
708
|
+
|
|
709
|
+
* add weaveLazy ([8b665d3](https://github.com/char0n/ramda-adjunct/commit/8b665d3))
|
|
710
|
+
|
|
711
|
+
|
|
712
|
+
|
|
713
|
+
<a name="1.9.0"></a>
|
|
714
|
+
# [1.9.0](https://github.com/char0n/ramda-adjunct/compare/v1.8.1...v1.9.0) (2017-06-14)
|
|
715
|
+
|
|
716
|
+
|
|
717
|
+
### Features
|
|
718
|
+
|
|
719
|
+
* add support for ramda >= 0.19.0 <= 0.24.1 ([b414d1c](https://github.com/char0n/ramda-adjunct/commit/b414d1c))
|
|
720
|
+
* add isArrayLike ([3062a89](https://github.com/char0n/ramda-adjunct/commit/3062a89))
|
|
721
|
+
|
|
722
|
+
|
|
723
|
+
<a name="1.8.1"></a>
|
|
724
|
+
## [1.8.1](https://github.com/char0n/ramda-adjunct/compare/v1.8.0...v1.8.1) (2017-05-23)
|
|
725
|
+
|
|
726
|
+
|
|
727
|
+
### Bug Fixes
|
|
728
|
+
|
|
729
|
+
* Fixes corrupted build on npm
|
|
730
|
+
|
|
731
|
+
|
|
732
|
+
<a name="1.8.0"></a>
|
|
733
|
+
# [1.8.0](https://github.com/char0n/ramda-adjunct/compare/v1.7.0...v1.8.0) (2017-05-22)
|
|
734
|
+
|
|
735
|
+
|
|
736
|
+
### Features
|
|
737
|
+
|
|
738
|
+
* **Identity:** add Identity monadic type to public API ([5130a73](https://github.com/char0n/ramda-adjunct/commit/5130a73))
|
|
739
|
+
* **weave:** add support for auto-currying returned function ([7fcf7a9](https://github.com/char0n/ramda-adjunct/commit/7fcf7a9)), closes [#78](https://github.com/char0n/ramda-adjunct/issues/78)
|
|
740
|
+
* add isValidDate ([3a2f4ad](https://github.com/char0n/ramda-adjunct/commit/3a2f4ad))
|
|
741
|
+
* isNotValidDate ([10d3780](https://github.com/char0n/ramda-adjunct/commit/10d3780)), closes [#46](https://github.com/char0n/ramda-adjunct/issues/46)
|
|
742
|
+
|
|
743
|
+
|
|
744
|
+
|
|
745
|
+
<a name="1.7.0"></a>
|
|
746
|
+
# [1.7.0](https://github.com/char0n/ramda-adjunct/compare/v1.6.0...v1.7.0) (2017-05-18)
|
|
747
|
+
|
|
748
|
+
|
|
749
|
+
### Bug Fixes
|
|
750
|
+
|
|
751
|
+
* **package.json:** point browser field to es/index.js ([aaa018e](https://github.com/char0n/ramda-adjunct/commit/aaa018e)), closes [#76](https://github.com/char0n/ramda-adjunct/issues/76)
|
|
752
|
+
|
|
753
|
+
|
|
754
|
+
### Features
|
|
755
|
+
|
|
756
|
+
* add weave ([118daf9](https://github.com/char0n/ramda-adjunct/commit/118daf9)), closes [#65](https://github.com/char0n/ramda-adjunct/issues/65)
|
|
757
|
+
|
|
758
|
+
|
|
759
|
+
|
|
760
|
+
<a name="1.6.0"></a>
|
|
761
|
+
# [1.6.0](https://github.com/char0n/ramda-adjunct/compare/v1.5.0...v1.6.0) (2017-05-16)
|
|
762
|
+
|
|
763
|
+
|
|
764
|
+
### Features
|
|
765
|
+
|
|
766
|
+
* **Identity:** add Setoid spec to Identity ([3c62ad6](https://github.com/char0n/ramda-adjunct/commit/3c62ad6))
|
|
767
|
+
* add mergeRight ([25051aa](https://github.com/char0n/ramda-adjunct/commit/25051aa))
|
|
768
|
+
* add stubNull ([7c71292](https://github.com/char0n/ramda-adjunct/commit/7c71292)), closes [#71](https://github.com/char0n/ramda-adjunct/issues/71)
|
|
769
|
+
|
|
770
|
+
|
|
771
|
+
|
|
772
|
+
<a name="1.5.0"></a>
|
|
773
|
+
# [1.5.0](https://github.com/char0n/ramda-adjunct/compare/v1.4.0...v1.5.0) (2017-05-10)
|
|
774
|
+
|
|
775
|
+
|
|
776
|
+
### Features
|
|
777
|
+
|
|
778
|
+
* add renameKeys ([1a2538e](https://github.com/char0n/ramda-adjunct/commit/1a2538e))
|
|
779
|
+
* add renameKeysWith ([fb5059c](https://github.com/char0n/ramda-adjunct/commit/fb5059c))
|
|
780
|
+
* expose ap as internal util ([16e2535](https://github.com/char0n/ramda-adjunct/commit/16e2535)), closes [#64](https://github.com/char0n/ramda-adjunct/issues/64)
|
|
781
|
+
|
|
782
|
+
|
|
783
|
+
|
|
784
|
+
<a name="1.4.0"></a>
|
|
785
|
+
# [1.4.0](https://github.com/char0n/ramda-adjunct/compare/v1.3.2...v1.4.0) (2017-04-28)
|
|
786
|
+
|
|
787
|
+
|
|
788
|
+
### Bug Fixes
|
|
789
|
+
|
|
790
|
+
* **isGeneratorFunction:** check for GeneratorFunction instead of AsyncFunction ([853f934](https://github.com/char0n/ramda-adjunct/commit/853f934))
|
|
791
|
+
|
|
792
|
+
|
|
793
|
+
### Features
|
|
794
|
+
|
|
795
|
+
* add cata ([1c6fdc6](https://github.com/char0n/ramda-adjunct/commit/1c6fdc6)), closes [#58](https://github.com/char0n/ramda-adjunct/issues/58)
|
|
796
|
+
* **Either:** add Either monad with basic capabilities ([ac2c51f](https://github.com/char0n/ramda-adjunct/commit/ac2c51f))
|
|
797
|
+
|
|
798
|
+
|
|
799
|
+
|
|
800
|
+
<a name="1.3.2"></a>
|
|
801
|
+
## [1.3.2](https://github.com/char0n/ramda-adjunct/compare/v1.3.1...v1.3.2) (2017-04-23)
|
|
802
|
+
|
|
803
|
+
|
|
804
|
+
### Bug Fixes
|
|
805
|
+
|
|
806
|
+
* **liftFN:** fix multiple bugs and resolve ramda complatibility issue ([47bc23f](https://github.com/char0n/ramda-adjunct/commit/47bc23f)), closes [#59](https://github.com/char0n/ramda-adjunct/issues/59)
|
|
807
|
+
|
|
808
|
+
|
|
809
|
+
|
|
810
|
+
<a name="1.3.1"></a>
|
|
811
|
+
## [1.3.1](https://github.com/char0n/ramda-adjunct/compare/v1.3.0...v1.3.1) (2017-04-20)
|
|
812
|
+
|
|
813
|
+
* fix linting issues
|
|
814
|
+
|
|
815
|
+
<a name="1.3.0"></a>
|
|
816
|
+
# [1.3.0](https://github.com/char0n/ramda-adjunct/compare/v1.2.0...v1.3.0) (2017-04-20)
|
|
817
|
+
|
|
818
|
+
* fix missing function imports
|
|
819
|
+
|
|
820
|
+
<a name="1.2.0"></a>
|
|
821
|
+
# [1.2.0](https://github.com/char0n/ramda-adjunct/compare/v1.1.0...v1.2.0) (2017-04-16)
|
|
822
|
+
|
|
823
|
+
|
|
824
|
+
### Features
|
|
825
|
+
|
|
826
|
+
* add defaults alias to merge ([9a3aa17](https://github.com/char0n/ramda-adjunct/commit/9a3aa17))
|
|
827
|
+
* add liftF ([b475d5d](https://github.com/char0n/ramda-adjunct/commit/b475d5d))
|
|
828
|
+
* add liftFN ([f65a52e](https://github.com/char0n/ramda-adjunct/commit/f65a52e))
|
|
829
|
+
* add paths ([c409d6b](https://github.com/char0n/ramda-adjunct/commit/c409d6b)), closes [#54](https://github.com/char0n/ramda-adjunct/issues/54)
|
|
830
|
+
* add resetToDefault ([d5202fb](https://github.com/char0n/ramda-adjunct/commit/d5202fb))
|
|
831
|
+
|
|
832
|
+
|
|
833
|
+
|
|
834
|
+
<a name="1.1.0"></a>
|
|
835
|
+
# [1.1.0](https://github.com/char0n/ramda-adjunct/compare/v1.0.0...v1.1.0) (2017-04-09)
|
|
836
|
+
|
|
837
|
+
|
|
838
|
+
### Features
|
|
839
|
+
|
|
840
|
+
* add list ([30506b1](https://github.com/char0n/ramda-adjunct/commit/30506b1))
|
|
841
|
+
* add pickIndexes ([17cc387](https://github.com/char0n/ramda-adjunct/commit/17cc387))
|
|
842
|
+
|
|
843
|
+
|
|
844
|
+
|
|
845
|
+
<a name="1.0.0"></a>
|
|
846
|
+
# [1.0.0](https://github.com/char0n/ramda-adjunct/compare/v0.7.0...v1.0.0) (2017-04-02)
|
|
847
|
+
|
|
848
|
+
|
|
849
|
+
### Features
|
|
850
|
+
|
|
851
|
+
* add noop ([38877c5](https://github.com/char0n/ramda-adjunct/commit/38877c5)), closes [#36](https://github.com/char0n/ramda-adjunct/issues/36)
|
|
852
|
+
* add stubUndefined ([7e47e45](https://github.com/char0n/ramda-adjunct/commit/7e47e45)), closes [#49](https://github.com/char0n/ramda-adjunct/issues/49)
|
|
853
|
+
* use es2015 imports ([8e86019](https://github.com/char0n/ramda-adjunct/commit/8e86019))
|
|
854
|
+
|
|
855
|
+
|
|
856
|
+
|
|
857
|
+
<a name="0.7.0"></a>
|
|
858
|
+
# [0.7.0](https://github.com/char0n/ramda-adjunct/compare/v0.6.0...v0.7.0) (2017-03-26)
|
|
859
|
+
|
|
860
|
+
|
|
861
|
+
### Features
|
|
862
|
+
|
|
863
|
+
* add isNotInteger ([494094d](https://github.com/char0n/ramda-adjunct/commit/494094d)), closes [#10](https://github.com/char0n/ramda-adjunct/issues/10)
|
|
864
|
+
* isFinite ([f3ed894](https://github.com/char0n/ramda-adjunct/commit/f3ed894))
|
|
865
|
+
* isInteger ([466db58](https://github.com/char0n/ramda-adjunct/commit/466db58))
|
|
866
|
+
* isNotFinite ([1edbebc](https://github.com/char0n/ramda-adjunct/commit/1edbebc))
|
|
867
|
+
|
|
868
|
+
|
|
869
|
+
|
|
870
|
+
<a name="0.6.0"></a>
|
|
871
|
+
# [0.6.0](https://github.com/char0n/ramda-adjunct/compare/v0.5.1...v0.6.0) (2017-03-16)
|
|
872
|
+
|
|
873
|
+
|
|
874
|
+
### Features
|
|
875
|
+
|
|
876
|
+
* add isDate ([5fbd348](https://github.com/char0n/ramda-adjunct/commit/5fbd348))
|
|
877
|
+
* add isNaN ([3111de3](https://github.com/char0n/ramda-adjunct/commit/3111de3))
|
|
878
|
+
* add isNotDate ([4ffa958](https://github.com/char0n/ramda-adjunct/commit/4ffa958))
|
|
879
|
+
* add isNotNaN ([fdc83c1](https://github.com/char0n/ramda-adjunct/commit/fdc83c1))
|
|
880
|
+
* add isNotNumber ([a3a0758](https://github.com/char0n/ramda-adjunct/commit/a3a0758))
|
|
881
|
+
* as isNumber ([d76d5fd](https://github.com/char0n/ramda-adjunct/commit/d76d5fd))
|
|
882
|
+
|
|
883
|
+
|
|
884
|
+
|
|
885
|
+
<a name="0.5.1"></a>
|
|
886
|
+
## [0.5.1](https://github.com/char0n/ramda-adjunct/compare/v0.5.0...v0.5.1) (2017-03-06)
|
|
887
|
+
|
|
888
|
+
|
|
889
|
+
|
|
890
|
+
<a name="0.5.0"></a>
|
|
891
|
+
# [0.5.0](https://github.com/char0n/ramda-adjunct/compare/v0.4.0...v0.5.0) (2017-03-06)
|
|
892
|
+
|
|
893
|
+
|
|
894
|
+
### Bug Fixes
|
|
895
|
+
|
|
896
|
+
* **isGeneratorFunction:** add legacy check ([24969a6](https://github.com/char0n/ramda-adjunct/commit/24969a6))
|
|
897
|
+
|
|
898
|
+
|
|
899
|
+
### Features
|
|
900
|
+
|
|
901
|
+
* add isFunction ([c0e45e7](https://github.com/char0n/ramda-adjunct/commit/c0e45e7))
|
|
902
|
+
* **typescript:** add support for typescript by typings ([1ff7c61](https://github.com/char0n/ramda-adjunct/commit/1ff7c61))
|
|
903
|
+
* add isAsyncFunction ([b72a040](https://github.com/char0n/ramda-adjunct/commit/b72a040))
|
|
904
|
+
* add isGeneratorFunction ([08ee74b](https://github.com/char0n/ramda-adjunct/commit/08ee74b))
|
|
905
|
+
* add isNotArrayLike ([dbf09b9](https://github.com/char0n/ramda-adjunct/commit/dbf09b9)), closes [#33](https://github.com/char0n/ramda-adjunct/issues/33)
|
|
906
|
+
* add isNotAsyncFunction ([8194de9](https://github.com/char0n/ramda-adjunct/commit/8194de9))
|
|
907
|
+
* add isNotFunction ([82b8295](https://github.com/char0n/ramda-adjunct/commit/82b8295)), closes [#31](https://github.com/char0n/ramda-adjunct/issues/31)
|
|
908
|
+
* add isNotObjectLike ([9233e00](https://github.com/char0n/ramda-adjunct/commit/9233e00))
|
|
909
|
+
* add isNotPlainObject ([1d39f44](https://github.com/char0n/ramda-adjunct/commit/1d39f44))
|
|
910
|
+
* add isObject ([9f6e64a](https://github.com/char0n/ramda-adjunct/commit/9f6e64a))
|
|
911
|
+
* add isObjectLike ([52b1917](https://github.com/char0n/ramda-adjunct/commit/52b1917))
|
|
912
|
+
* add isPlainObject ([6e14291](https://github.com/char0n/ramda-adjunct/commit/6e14291))
|
|
913
|
+
* isNotGeneratorFunction ([ffba8cd](https://github.com/char0n/ramda-adjunct/commit/ffba8cd))
|
|
914
|
+
* isNotObject ([aa4a0df](https://github.com/char0n/ramda-adjunct/commit/aa4a0df))
|
|
915
|
+
|
|
916
|
+
|
|
917
|
+
|
|
918
|
+
<a name="0.4.0"></a>
|
|
919
|
+
# [0.4.0](https://github.com/char0n/ramda-adjunct/compare/v0.3.0...v0.4.0) (2017-02-27)
|
|
920
|
+
|
|
921
|
+
|
|
922
|
+
### Bug Fixes
|
|
923
|
+
|
|
924
|
+
* fix import of isNilOrEmpty ([7de3f33](https://github.com/char0n/ramda-adjunct/commit/7de3f33))
|
|
925
|
+
|
|
926
|
+
|
|
927
|
+
### Features
|
|
928
|
+
|
|
929
|
+
* add isNilOrEmpty ([a42d429](https://github.com/char0n/ramda-adjunct/commit/a42d429)), closes [#21](https://github.com/char0n/ramda-adjunct/issues/21)
|
|
930
|
+
* add isNotEmpty ([791f81b](https://github.com/char0n/ramda-adjunct/commit/791f81b)), closes [#19](https://github.com/char0n/ramda-adjunct/issues/19)
|
|
931
|
+
* add isString, isNotString ([15a4deb](https://github.com/char0n/ramda-adjunct/commit/15a4deb))
|
|
932
|
+
|
|
933
|
+
|
|
934
|
+
|
|
935
|
+
<a name="0.3.0"></a>
|
|
936
|
+
# [0.3.0](https://github.com/char0n/ramda-adjunct/compare/v0.2.0...v0.3.0) (2017-02-16)
|
|
937
|
+
|
|
938
|
+
|
|
939
|
+
### Features
|
|
940
|
+
|
|
941
|
+
* add isArray ([5bf4ab9](https://github.com/char0n/ramda-adjunct/commit/5bf4ab9))
|
|
942
|
+
* add isBoolean, isNotBoolean ([5400527](https://github.com/char0n/ramda-adjunct/commit/5400527))
|
|
943
|
+
* add isNotArray ([17d11c2](https://github.com/char0n/ramda-adjunct/commit/17d11c2))
|
|
944
|
+
* add isNotNil ([f49962a](https://github.com/char0n/ramda-adjunct/commit/f49962a))
|
|
945
|
+
|
|
946
|
+
|
|
947
|
+
|
|
948
|
+
<a name="0.2.0"></a>
|
|
949
|
+
# [0.2.0](https://github.com/char0n/ramda-adjunct/compare/v0.1.0...v0.2.0) (2017-02-13)
|
|
950
|
+
|
|
951
|
+
|
|
952
|
+
|
|
953
|
+
<a name="0.1.0"></a>
|
|
954
|
+
# [0.1.0](https://github.com/char0n/ramda-adjunct/compare/v0.0.1...v0.1.0) (2017-02-09)
|
|
955
|
+
|
|
956
|
+
|
|
957
|
+
### Features
|
|
958
|
+
|
|
959
|
+
* **isNull:** add isNull along side with complement isNotNull ([c803052](https://github.com/char0n/ramda-adjunct/commit/c803052))
|
|
960
|
+
|
|
961
|
+
|
|
962
|
+
|
|
963
|
+
<a name="0.0.1"></a>
|
|
964
|
+
## [0.0.1](https://github.com/char0n/ramda-adjunct/compare/b468c12...v0.0.1) (2017-02-09)
|
|
965
|
+
|
|
966
|
+
|
|
967
|
+
### Features
|
|
968
|
+
|
|
969
|
+
* **isNotUndefined:** add isNotUndefined adjunct ([b468c12](https://github.com/char0n/ramda-adjunct/commit/b468c12))
|
|
970
|
+
* **isUndefined:** add isUndefined adjunct ([2d1f85b](https://github.com/char0n/ramda-adjunct/commit/2d1f85b))
|
|
971
|
+
|
|
972
|
+
|
|
973
|
+
|