ramda-adjunct 4.1.0 → 5.0.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.
Files changed (548) hide show
  1. package/CHANGELOG.md +995 -0
  2. package/README.md +2 -2
  3. package/babel.config.cjs +56 -0
  4. package/dist/RA.node.js +233 -9742
  5. package/dist/RA.node.min.js +1 -2
  6. package/dist/RA.web.js +233 -9742
  7. package/dist/RA.web.min.js +1 -2
  8. package/dist/RA.web.standalone.js +229 -27483
  9. package/dist/RA.web.standalone.min.js +1 -2
  10. package/es/allEqual.js +1 -1
  11. package/es/allIdentical.js +1 -1
  12. package/es/allSettledP.js +2 -2
  13. package/es/allUnique.js +1 -1
  14. package/es/anyP.js +2 -2
  15. package/es/argsPass.js +2 -2
  16. package/es/async.js +2 -2
  17. package/es/cata.js +1 -1
  18. package/es/compact.js +1 -1
  19. package/es/concatAll.js +1 -1
  20. package/es/copyKeys.js +6 -6
  21. package/es/curryRight.js +1 -1
  22. package/es/delayP.js +2 -2
  23. package/es/dispatch.js +3 -3
  24. package/es/ensureArray.js +1 -1
  25. package/es/escapeRegExp.js +1 -1
  26. package/es/fantasy-land/Identity.js +6 -7
  27. package/es/fantasy-land/traits.js +8 -8
  28. package/es/flattenDepth.js +1 -1
  29. package/es/flattenProp.js +1 -1
  30. package/es/fnull.js +2 -2
  31. package/es/index.js +228 -229
  32. package/es/internal/ap.js +2 -2
  33. package/es/internal/isCoercible.js +3 -3
  34. package/es/internal/isOfTypeObject.js +1 -1
  35. package/es/internal/makeFlat.js +1 -1
  36. package/es/internal/ponyfills/Array.from.js +4 -4
  37. package/es/internal/ponyfills/Math.trunc.js +1 -1
  38. package/es/internal/ponyfills/Number.isFinite.js +1 -1
  39. package/es/internal/ponyfills/Number.isInteger.js +1 -1
  40. package/es/internal/ponyfills/Number.isNaN.js +1 -1
  41. package/es/internal/ponyfills/Number.isSafeInteger.js +2 -2
  42. package/es/internal/ponyfills/Promise.allSettled.js +2 -2
  43. package/es/internal/ponyfills/Promise.any.js +11 -12
  44. package/es/internal/ponyfills/String.padEnd.js +3 -3
  45. package/es/internal/ponyfills/String.padStart.js +3 -3
  46. package/es/internal/ponyfills/String.repeat.js +2 -2
  47. package/es/internal/ponyfills/String.replaceAll.js +2 -2
  48. package/es/invoke.js +1 -1
  49. package/es/invokeArgs.js +2 -2
  50. package/es/isArray.js +1 -1
  51. package/es/isArrayLike.js +3 -3
  52. package/es/isBlank.js +1 -1
  53. package/es/isEmptyArray.js +1 -1
  54. package/es/isEven.js +2 -2
  55. package/es/isFalsy.js +1 -1
  56. package/es/isFinite.js +2 -2
  57. package/es/isFloat.js +2 -2
  58. package/es/isFunction.js +2 -2
  59. package/es/isIndexed.js +2 -2
  60. package/es/isInteger.js +2 -2
  61. package/es/isInteger32.js +1 -1
  62. package/es/isIterable.js +1 -1
  63. package/es/isNaN.js +2 -2
  64. package/es/isNaturalNumber.js +2 -2
  65. package/es/isNegative.js +1 -1
  66. package/es/isNonEmptyArray.js +2 -3
  67. package/es/isNonEmptyString.js +3 -4
  68. package/es/isNonNegative.js +1 -1
  69. package/es/isNonPositive.js +1 -1
  70. package/es/isNotArray.js +1 -1
  71. package/es/isNotArrayLike.js +1 -1
  72. package/es/isNotAsyncFunction.js +1 -1
  73. package/es/isNotBoolean.js +1 -1
  74. package/es/isNotDate.js +1 -1
  75. package/es/isNotFinite.js +1 -1
  76. package/es/isNotFloat.js +1 -1
  77. package/es/isNotFunction.js +1 -1
  78. package/es/isNotGeneratorFunction.js +1 -1
  79. package/es/isNotInteger.js +1 -1
  80. package/es/isNotMap.js +1 -1
  81. package/es/isNotNaN.js +1 -1
  82. package/es/isNotNilOrEmpty.js +1 -1
  83. package/es/isNotNull.js +1 -1
  84. package/es/isNotNumber.js +1 -1
  85. package/es/isNotObj.js +1 -1
  86. package/es/isNotObjLike.js +1 -1
  87. package/es/isNotPair.js +1 -1
  88. package/es/isNotPlainObj.js +1 -1
  89. package/es/isNotPrimitive.js +1 -1
  90. package/es/isNotRegExp.js +1 -1
  91. package/es/isNotSet.js +1 -1
  92. package/es/isNotString.js +1 -1
  93. package/es/isNotUndefined.js +1 -1
  94. package/es/isNotValidDate.js +1 -1
  95. package/es/isNotValidNumber.js +1 -1
  96. package/es/isObj.js +3 -3
  97. package/es/isObjLike.js +2 -2
  98. package/es/isOdd.js +1 -1
  99. package/es/isPair.js +1 -1
  100. package/es/isPlainObj.js +3 -3
  101. package/es/isPositive.js +1 -1
  102. package/es/isPrimitive.js +8 -8
  103. package/es/isPromise.js +1 -1
  104. package/es/isPrototypeOf.js +1 -1
  105. package/es/isSafeInteger.js +2 -2
  106. package/es/isSentinelValue.js +1 -1
  107. package/es/isSparseArray.js +1 -1
  108. package/es/isSymbol.js +1 -1
  109. package/es/isThenable.js +1 -1
  110. package/es/isUinteger32.js +1 -1
  111. package/es/isUndefined.js +1 -1
  112. package/es/isValidDate.js +2 -2
  113. package/es/isValidNumber.js +2 -2
  114. package/es/lastP.js +5 -5
  115. package/es/lengthEq.js +1 -1
  116. package/es/lengthGt.js +1 -1
  117. package/es/lengthGte.js +1 -1
  118. package/es/lengthLt.js +1 -1
  119. package/es/lengthLte.js +1 -1
  120. package/es/lengthNotEq.js +1 -1
  121. package/es/lensNotEq.js +1 -1
  122. package/es/lensNotSatisfy.js +1 -1
  123. package/es/lensSatisfies.js +1 -1
  124. package/es/lensTraverse.js +1 -1
  125. package/es/liftF.js +1 -1
  126. package/es/liftFN.js +1 -1
  127. package/es/mergePaths.js +1 -1
  128. package/es/mergeProp.js +1 -1
  129. package/es/noneP.js +3 -3
  130. package/es/noop.js +1 -1
  131. package/es/notAllUnique.js +1 -1
  132. package/es/overlaps.js +1 -2
  133. package/es/padCharsEnd.js +2 -2
  134. package/es/padCharsStart.js +2 -2
  135. package/es/padEnd.js +1 -1
  136. package/es/padStart.js +1 -1
  137. package/es/rangeStep.js +1 -1
  138. package/es/reduceP.js +4 -4
  139. package/es/reduceRightP.js +4 -4
  140. package/es/renameKey.js +4 -4
  141. package/es/renameKeyWith.js +1 -1
  142. package/es/renameKeys.js +1 -1
  143. package/es/repeatStr.js +2 -2
  144. package/es/replaceAll.js +2 -2
  145. package/es/sign.js +2 -2
  146. package/es/sortByProp.js +1 -1
  147. package/es/spreadProp.js +1 -1
  148. package/es/toArray.js +3 -3
  149. package/es/toNumber.js +1 -1
  150. package/es/trimCharsEnd.js +1 -1
  151. package/es/trimCharsStart.js +1 -1
  152. package/es/trimEnd.js +2 -2
  153. package/es/trimStart.js +2 -2
  154. package/es/trunc.js +2 -2
  155. package/es/unzipObjWith.js +1 -1
  156. package/lib/Y.js +1 -2
  157. package/lib/allEqual.js +3 -3
  158. package/lib/allEqualTo.js +1 -2
  159. package/lib/allIdentical.js +2 -3
  160. package/lib/allIdenticalTo.js +1 -2
  161. package/lib/allP.js +1 -2
  162. package/lib/allSettledP.js +4 -6
  163. package/lib/allUnique.js +2 -3
  164. package/lib/anyP.js +8 -10
  165. package/lib/appendFlipped.js +1 -2
  166. package/lib/argsPass.js +3 -4
  167. package/lib/async.js +3 -4
  168. package/lib/cata.js +2 -3
  169. package/lib/catchP.js +1 -2
  170. package/lib/ceil.js +1 -2
  171. package/lib/compact.js +2 -3
  172. package/lib/concatAll.js +2 -3
  173. package/lib/concatRight.js +1 -2
  174. package/lib/copyKeys.js +7 -8
  175. package/lib/curryRight.js +2 -3
  176. package/lib/curryRightN.js +1 -2
  177. package/lib/defaultWhen.js +1 -2
  178. package/lib/delayP.js +3 -4
  179. package/lib/dispatch.js +39 -40
  180. package/lib/divideNum.js +1 -2
  181. package/lib/dropArgs.js +1 -2
  182. package/lib/ensureArray.js +2 -3
  183. package/lib/escapeRegExp.js +2 -3
  184. package/lib/fantasy-land/Identity.js +9 -11
  185. package/lib/fantasy-land/mapping.js +20 -40
  186. package/lib/fantasy-land/traits.js +17 -23
  187. package/lib/fantasy-land/util.js +4 -8
  188. package/lib/filterIndexed.js +1 -2
  189. package/lib/findOr.js +1 -2
  190. package/lib/flattenDepth.js +2 -3
  191. package/lib/flattenPath.js +1 -2
  192. package/lib/flattenProp.js +2 -3
  193. package/lib/floor.js +1 -2
  194. package/lib/fnull.js +3 -4
  195. package/lib/inRange.js +2 -3
  196. package/lib/included.js +1 -2
  197. package/lib/index.js +215 -217
  198. package/lib/internal/ap.js +6 -7
  199. package/lib/internal/compareLength.js +1 -2
  200. package/lib/internal/isCoercible.js +4 -5
  201. package/lib/internal/isOfTypeObject.js +2 -3
  202. package/lib/internal/makeFlat.js +2 -3
  203. package/lib/internal/ponyfills/Array.from.js +5 -6
  204. package/lib/internal/ponyfills/Math.sign.js +1 -2
  205. package/lib/internal/ponyfills/Math.trunc.js +2 -3
  206. package/lib/internal/ponyfills/Number.MAX_SAFE_INTEGER.js +1 -2
  207. package/lib/internal/ponyfills/Number.MIN_SAFE_INTEGER.js +1 -2
  208. package/lib/internal/ponyfills/Number.isFinite.js +2 -3
  209. package/lib/internal/ponyfills/Number.isInteger.js +2 -3
  210. package/lib/internal/ponyfills/Number.isNaN.js +2 -3
  211. package/lib/internal/ponyfills/Number.isSafeInteger.js +4 -5
  212. package/lib/internal/ponyfills/Promise.allSettled.js +3 -4
  213. package/lib/internal/ponyfills/Promise.any.js +13 -16
  214. package/lib/internal/ponyfills/String.padEnd.js +5 -6
  215. package/lib/internal/ponyfills/String.padStart.js +5 -6
  216. package/lib/internal/ponyfills/String.repeat.js +3 -4
  217. package/lib/internal/ponyfills/String.replaceAll.js +3 -4
  218. package/lib/internal/ponyfills/String.trimEnd.js +1 -2
  219. package/lib/internal/ponyfills/String.trimStart.js +1 -2
  220. package/lib/invoke.js +2 -3
  221. package/lib/invokeArgs.js +3 -4
  222. package/lib/isArray.js +2 -3
  223. package/lib/isArrayLike.js +5 -6
  224. package/lib/isAsyncFunction.js +1 -2
  225. package/lib/isBigInt.js +1 -2
  226. package/lib/isBlank.js +2 -3
  227. package/lib/isBoolean.js +1 -2
  228. package/lib/isDate.js +1 -2
  229. package/lib/isEmptyArray.js +2 -3
  230. package/lib/isEmptyString.js +1 -2
  231. package/lib/isError.js +1 -2
  232. package/lib/isEven.js +3 -4
  233. package/lib/isFalse.js +1 -2
  234. package/lib/isFalsy.js +2 -3
  235. package/lib/isFinite.js +4 -6
  236. package/lib/isFloat.js +3 -4
  237. package/lib/isFunction.js +3 -4
  238. package/lib/isGeneratorFunction.js +1 -2
  239. package/lib/isIndexed.js +3 -4
  240. package/lib/isInteger.js +4 -6
  241. package/lib/isInteger32.js +2 -3
  242. package/lib/isIterable.js +2 -3
  243. package/lib/isMap.js +1 -2
  244. package/lib/isNaN.js +4 -6
  245. package/lib/isNaturalNumber.js +3 -4
  246. package/lib/isNegative.js +2 -3
  247. package/lib/isNegativeZero.js +1 -2
  248. package/lib/isNilOrEmpty.js +1 -2
  249. package/lib/isNonEmptyArray.js +3 -5
  250. package/lib/isNonEmptyString.js +4 -6
  251. package/lib/isNonNegative.js +2 -3
  252. package/lib/isNonPositive.js +2 -3
  253. package/lib/isNotArray.js +2 -3
  254. package/lib/isNotArrayLike.js +2 -3
  255. package/lib/isNotAsyncFunction.js +2 -3
  256. package/lib/isNotBoolean.js +2 -3
  257. package/lib/isNotDate.js +2 -3
  258. package/lib/isNotFinite.js +2 -3
  259. package/lib/isNotFloat.js +2 -3
  260. package/lib/isNotFunction.js +2 -3
  261. package/lib/isNotGeneratorFunction.js +2 -3
  262. package/lib/isNotInteger.js +2 -3
  263. package/lib/isNotMap.js +2 -3
  264. package/lib/isNotNaN.js +2 -3
  265. package/lib/isNotNil.js +1 -2
  266. package/lib/isNotNilOrEmpty.js +2 -3
  267. package/lib/isNotNull.js +2 -3
  268. package/lib/isNotNumber.js +2 -3
  269. package/lib/isNotObj.js +2 -3
  270. package/lib/isNotObjLike.js +2 -3
  271. package/lib/isNotPair.js +2 -3
  272. package/lib/isNotPlainObj.js +2 -3
  273. package/lib/isNotPrimitive.js +2 -3
  274. package/lib/isNotRegExp.js +2 -3
  275. package/lib/isNotSet.js +2 -3
  276. package/lib/isNotString.js +2 -3
  277. package/lib/isNotUndefined.js +2 -3
  278. package/lib/isNotValidDate.js +2 -3
  279. package/lib/isNotValidNumber.js +2 -3
  280. package/lib/isNull.js +1 -2
  281. package/lib/isNumber.js +1 -2
  282. package/lib/isObj.js +4 -5
  283. package/lib/isObjLike.js +3 -4
  284. package/lib/isOdd.js +2 -3
  285. package/lib/isPair.js +2 -3
  286. package/lib/isPlainObj.js +4 -5
  287. package/lib/isPositive.js +2 -3
  288. package/lib/isPositiveZero.js +1 -2
  289. package/lib/isPrimitive.js +9 -10
  290. package/lib/isPromise.js +2 -3
  291. package/lib/isPrototypeOf.js +2 -3
  292. package/lib/isRegExp.js +1 -2
  293. package/lib/isSafeInteger.js +5 -6
  294. package/lib/isSentinelValue.js +4 -4
  295. package/lib/isSet.js +1 -2
  296. package/lib/isSparseArray.js +2 -3
  297. package/lib/isString.js +1 -2
  298. package/lib/isSymbol.js +2 -3
  299. package/lib/isThenable.js +2 -3
  300. package/lib/isTrue.js +1 -2
  301. package/lib/isTruthy.js +1 -2
  302. package/lib/isUinteger32.js +2 -3
  303. package/lib/isUndefined.js +2 -3
  304. package/lib/isValidDate.js +3 -4
  305. package/lib/isValidNumber.js +3 -4
  306. package/lib/lastP.js +6 -7
  307. package/lib/lengthEq.js +2 -3
  308. package/lib/lengthGt.js +2 -3
  309. package/lib/lengthGte.js +2 -3
  310. package/lib/lengthLt.js +2 -3
  311. package/lib/lengthLte.js +2 -3
  312. package/lib/lengthNotEq.js +2 -3
  313. package/lib/lensEq.js +1 -2
  314. package/lib/lensIso.js +1 -2
  315. package/lib/lensNotEq.js +2 -3
  316. package/lib/lensNotSatisfy.js +2 -3
  317. package/lib/lensSatisfies.js +2 -3
  318. package/lib/lensTraverse.js +2 -3
  319. package/lib/liftF.js +2 -3
  320. package/lib/liftFN.js +2 -3
  321. package/lib/list.js +1 -2
  322. package/lib/mapIndexed.js +1 -2
  323. package/lib/mergePath.js +1 -2
  324. package/lib/mergePaths.js +2 -3
  325. package/lib/mergeProp.js +2 -3
  326. package/lib/mergeProps.js +1 -2
  327. package/lib/move.js +1 -2
  328. package/lib/nand.js +1 -2
  329. package/lib/neither.js +1 -2
  330. package/lib/noneP.js +4 -5
  331. package/lib/nonePass.js +1 -2
  332. package/lib/noop.js +2 -3
  333. package/lib/nor.js +1 -2
  334. package/lib/notAllPass.js +1 -2
  335. package/lib/notAllUnique.js +2 -3
  336. package/lib/notBoth.js +1 -2
  337. package/lib/notEqual.js +1 -2
  338. package/lib/omitBy.js +1 -2
  339. package/lib/omitIndexes.js +1 -2
  340. package/lib/overlaps.js +2 -5
  341. package/lib/package.json +1 -0
  342. package/lib/padCharsEnd.js +5 -8
  343. package/lib/padCharsStart.js +5 -8
  344. package/lib/padEnd.js +2 -3
  345. package/lib/padStart.js +2 -3
  346. package/lib/pathNotEq.js +1 -2
  347. package/lib/pathOrLazy.js +1 -2
  348. package/lib/paths.js +1 -2
  349. package/lib/pickIndexes.js +1 -2
  350. package/lib/propNotEq.js +1 -2
  351. package/lib/rangeStep.js +2 -3
  352. package/lib/reduceIndexed.js +1 -2
  353. package/lib/reduceP.js +5 -6
  354. package/lib/reduceRightP.js +5 -6
  355. package/lib/rejectP.js +1 -2
  356. package/lib/renameKey.js +5 -6
  357. package/lib/renameKeyWith.js +2 -3
  358. package/lib/renameKeys.js +2 -3
  359. package/lib/renameKeysWith.js +1 -2
  360. package/lib/repeatStr.js +5 -8
  361. package/lib/replaceAll.js +5 -8
  362. package/lib/resolveP.js +1 -2
  363. package/lib/round.js +1 -2
  364. package/lib/seq.js +2 -2
  365. package/lib/sign.js +5 -6
  366. package/lib/skipTake.js +1 -2
  367. package/lib/sliceFrom.js +1 -2
  368. package/lib/sliceTo.js +1 -2
  369. package/lib/sortByPaths.js +1 -2
  370. package/lib/sortByProp.js +2 -3
  371. package/lib/sortByProps.js +1 -2
  372. package/lib/spreadPath.js +1 -2
  373. package/lib/spreadProp.js +2 -3
  374. package/lib/stubArray.js +1 -2
  375. package/lib/stubNull.js +1 -2
  376. package/lib/stubObj.js +1 -2
  377. package/lib/stubString.js +1 -2
  378. package/lib/stubUndefined.js +1 -2
  379. package/lib/subtractNum.js +1 -2
  380. package/lib/thenCatchP.js +2 -4
  381. package/lib/toArray.js +5 -7
  382. package/lib/toInteger32.js +3 -3
  383. package/lib/toNumber.js +2 -3
  384. package/lib/toUinteger32.js +4 -3
  385. package/lib/trimCharsEnd.js +2 -3
  386. package/lib/trimCharsStart.js +2 -3
  387. package/lib/trimEnd.js +6 -8
  388. package/lib/trimStart.js +6 -8
  389. package/lib/trunc.js +5 -6
  390. package/lib/unzipObjWith.js +2 -3
  391. package/lib/viewOr.js +1 -2
  392. package/lib/weave.js +1 -2
  393. package/lib/weaveLazy.js +1 -2
  394. package/lib/zipObjWith.js +1 -2
  395. package/package.json +55 -50
  396. package/src/allEqual.js +1 -1
  397. package/src/allIdentical.js +1 -1
  398. package/src/allSettledP.js +2 -2
  399. package/src/allUnique.js +1 -1
  400. package/src/anyP.js +2 -2
  401. package/src/argsPass.js +2 -2
  402. package/src/async.js +2 -2
  403. package/src/cata.js +1 -1
  404. package/src/compact.js +1 -1
  405. package/src/concatAll.js +1 -1
  406. package/src/copyKeys.js +1 -1
  407. package/src/curryRight.js +1 -1
  408. package/src/delayP.js +2 -2
  409. package/src/dispatch.js +3 -3
  410. package/src/ensureArray.js +1 -1
  411. package/src/escapeRegExp.js +1 -1
  412. package/src/fantasy-land/Identity.js +2 -2
  413. package/src/fantasy-land/traits.js +5 -5
  414. package/src/flattenDepth.js +1 -1
  415. package/src/flattenProp.js +1 -1
  416. package/src/fnull.js +2 -2
  417. package/src/index.js +228 -229
  418. package/src/internal/ap.js +2 -2
  419. package/src/internal/isCoercible.js +3 -3
  420. package/src/internal/makeFlat.js +1 -1
  421. package/src/internal/ponyfills/Array.from.js +4 -4
  422. package/src/internal/ponyfills/Math.trunc.js +1 -1
  423. package/src/internal/ponyfills/Number.isFinite.js +1 -1
  424. package/src/internal/ponyfills/Number.isInteger.js +1 -1
  425. package/src/internal/ponyfills/Number.isNaN.js +1 -1
  426. package/src/internal/ponyfills/Number.isSafeInteger.js +2 -2
  427. package/src/internal/ponyfills/Promise.allSettled.js +2 -2
  428. package/src/internal/ponyfills/Promise.any.js +1 -1
  429. package/src/internal/ponyfills/String.padEnd.js +3 -3
  430. package/src/internal/ponyfills/String.padStart.js +3 -3
  431. package/src/internal/ponyfills/String.repeat.js +2 -2
  432. package/src/internal/ponyfills/String.replaceAll.js +2 -2
  433. package/src/invoke.js +1 -1
  434. package/src/invokeArgs.js +2 -2
  435. package/src/isArray.js +1 -1
  436. package/src/isArrayLike.js +2 -2
  437. package/src/isBlank.js +1 -1
  438. package/src/isEmptyArray.js +1 -1
  439. package/src/isEven.js +2 -2
  440. package/src/isFalsy.js +1 -1
  441. package/src/isFinite.js +2 -2
  442. package/src/isFloat.js +2 -2
  443. package/src/isFunction.js +2 -2
  444. package/src/isIndexed.js +2 -2
  445. package/src/isInteger.js +2 -2
  446. package/src/isInteger32.js +1 -1
  447. package/src/isIterable.js +1 -1
  448. package/src/isNaN.js +2 -2
  449. package/src/isNaturalNumber.js +2 -2
  450. package/src/isNegative.js +1 -1
  451. package/src/isNonEmptyArray.js +2 -3
  452. package/src/isNonEmptyString.js +3 -4
  453. package/src/isNonNegative.js +1 -1
  454. package/src/isNonPositive.js +1 -1
  455. package/src/isNotArray.js +1 -1
  456. package/src/isNotArrayLike.js +1 -1
  457. package/src/isNotAsyncFunction.js +1 -1
  458. package/src/isNotBoolean.js +1 -1
  459. package/src/isNotDate.js +1 -1
  460. package/src/isNotFinite.js +1 -1
  461. package/src/isNotFloat.js +1 -1
  462. package/src/isNotFunction.js +1 -1
  463. package/src/isNotGeneratorFunction.js +1 -1
  464. package/src/isNotInteger.js +1 -1
  465. package/src/isNotMap.js +1 -1
  466. package/src/isNotNaN.js +1 -1
  467. package/src/isNotNilOrEmpty.js +1 -1
  468. package/src/isNotNull.js +1 -1
  469. package/src/isNotNumber.js +1 -1
  470. package/src/isNotObj.js +1 -1
  471. package/src/isNotObjLike.js +1 -1
  472. package/src/isNotPair.js +1 -1
  473. package/src/isNotPlainObj.js +1 -1
  474. package/src/isNotPrimitive.js +1 -1
  475. package/src/isNotRegExp.js +1 -1
  476. package/src/isNotSet.js +1 -1
  477. package/src/isNotString.js +1 -1
  478. package/src/isNotUndefined.js +1 -1
  479. package/src/isNotValidDate.js +1 -1
  480. package/src/isNotValidNumber.js +1 -1
  481. package/src/isObj.js +3 -3
  482. package/src/isObjLike.js +2 -2
  483. package/src/isOdd.js +1 -1
  484. package/src/isPair.js +1 -1
  485. package/src/isPlainObj.js +3 -3
  486. package/src/isPositive.js +1 -1
  487. package/src/isPrimitive.js +8 -8
  488. package/src/isPromise.js +1 -1
  489. package/src/isPrototypeOf.js +1 -1
  490. package/src/isSafeInteger.js +2 -2
  491. package/src/isSentinelValue.js +1 -1
  492. package/src/isSparseArray.js +1 -1
  493. package/src/isThenable.js +1 -1
  494. package/src/isUinteger32.js +1 -1
  495. package/src/isUndefined.js +1 -1
  496. package/src/isValidDate.js +2 -2
  497. package/src/isValidNumber.js +2 -2
  498. package/src/lastP.js +5 -5
  499. package/src/lengthEq.js +1 -1
  500. package/src/lengthGt.js +1 -1
  501. package/src/lengthGte.js +1 -1
  502. package/src/lengthLt.js +1 -1
  503. package/src/lengthLte.js +1 -1
  504. package/src/lengthNotEq.js +1 -1
  505. package/src/lensNotEq.js +1 -1
  506. package/src/lensNotSatisfy.js +1 -1
  507. package/src/lensSatisfies.js +1 -1
  508. package/src/lensTraverse.js +3 -3
  509. package/src/liftF.js +1 -1
  510. package/src/liftFN.js +1 -1
  511. package/src/mergePaths.js +1 -1
  512. package/src/mergeProp.js +1 -1
  513. package/src/noneP.js +3 -3
  514. package/src/noop.js +1 -1
  515. package/src/notAllUnique.js +1 -1
  516. package/src/overlaps.js +1 -3
  517. package/src/padCharsEnd.js +2 -2
  518. package/src/padCharsStart.js +2 -2
  519. package/src/padEnd.js +1 -1
  520. package/src/padStart.js +1 -1
  521. package/src/rangeStep.js +1 -1
  522. package/src/reduceP.js +3 -3
  523. package/src/reduceRightP.js +3 -3
  524. package/src/renameKey.js +1 -1
  525. package/src/renameKeyWith.js +1 -1
  526. package/src/renameKeys.js +1 -1
  527. package/src/repeatStr.js +2 -2
  528. package/src/replaceAll.js +2 -2
  529. package/src/sign.js +2 -2
  530. package/src/sortByProp.js +1 -1
  531. package/src/spreadProp.js +1 -1
  532. package/src/toArray.js +3 -3
  533. package/src/toNumber.js +1 -1
  534. package/src/trimCharsEnd.js +1 -1
  535. package/src/trimCharsStart.js +1 -1
  536. package/src/trimEnd.js +2 -2
  537. package/src/trimStart.js +2 -2
  538. package/src/trunc.js +2 -2
  539. package/src/unzipObjWith.js +1 -1
  540. package/types/index.d.ts +23 -21
  541. package/dist/RA.node.min.js.LICENSE.txt +0 -22
  542. package/dist/RA.web.min.js.LICENSE.txt +0 -22
  543. package/dist/RA.web.standalone.min.js.LICENSE.txt +0 -22
  544. package/es/isNotEmpty.js +0 -25
  545. package/lib/isNotEmpty.js +0 -29
  546. package/src/isNotEmpty.js +0 -26
  547. package/types/.eslintrc.js +0 -23
  548. package/types/dtslint.eslint.js +0 -13
package/CHANGELOG.md CHANGED
@@ -1,3 +1,998 @@
1
+ # [5.0.0](https://github.com/char0n/ramda-adjunct/compare/v4.1.1...v5.0.0) (2024-04-29)
2
+
3
+
4
+ ### Features
5
+
6
+ * add support for ramda@0.30.0 ([81b11d0](https://github.com/char0n/ramda-adjunct/commit/81b11d05e0cc53c901b5efc40003cb40a66e794a)), closes [#2982](https://github.com/char0n/ramda-adjunct/issues/2982)
7
+ * convert to hybrid npm package (ESM & CommonJS) ([#2947](https://github.com/char0n/ramda-adjunct/issues/2947)) ([7ac2204](https://github.com/char0n/ramda-adjunct/commit/7ac2204b706e61d5d1cbf3390e16f3abdbb7f4f2)), closes [#2916](https://github.com/char0n/ramda-adjunct/issues/2916)
8
+ * remove isNotEmpty ([3c47ddc](https://github.com/char0n/ramda-adjunct/commit/3c47ddc04278401df8ffc33387dc4045ae7bb2b8)), closes [#2982](https://github.com/char0n/ramda-adjunct/issues/2982)
9
+
10
+
11
+ ### BREAKING CHANGES
12
+
13
+ * isNotEmpty is now part of ramda@0.30.0
14
+
15
+
16
+
17
+ ## [4.1.1](https://github.com/char0n/ramda-adjunct/compare/v4.1.0...v4.1.1) (2023-08-21)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * **types:** fix bug in typings that was causing downstream issues ([#2730](https://github.com/char0n/ramda-adjunct/issues/2730)) ([9ad235a](https://github.com/char0n/ramda-adjunct/commit/9ad235a3053d81961407b17cc5163b635561d81a))
23
+
24
+
25
+
26
+ # [4.1.0](https://github.com/char0n/ramda-adjunct/compare/v4.0.0...v4.1.0) (2023-08-18)
27
+
28
+
29
+ ### Features
30
+
31
+ * **object:** add renameKey ([#2627](https://github.com/char0n/ramda-adjunct/issues/2627)) ([2c943fe](https://github.com/char0n/ramda-adjunct/commit/2c943fe3990ce5c4397112e8ba1197fe850c63af))
32
+
33
+
34
+
35
+ # [4.0.0](https://github.com/char0n/ramda-adjunct/compare/v3.4.0...v4.0.0) (2023-04-05)
36
+
37
+
38
+ ### Features
39
+
40
+ * add support for ramda@0.29.0 ([#2568](https://github.com/char0n/ramda-adjunct/issues/2568)) ([05def8d](https://github.com/char0n/ramda-adjunct/commit/05def8d60fd9c71c4e4f8d9345b7b80ffa6dd6f7)), closes [#2567](https://github.com/char0n/ramda-adjunct/issues/2567)
41
+
42
+
43
+
44
+ # [3.4.0](https://github.com/char0n/ramda-adjunct/compare/v3.3.0...v3.4.0) (2022-12-03)
45
+
46
+
47
+ ### Bug Fixes
48
+
49
+ * **isGeneratorFunction:** remove legacy predicate ([#2431](https://github.com/char0n/ramda-adjunct/issues/2431)) ([c576212](https://github.com/char0n/ramda-adjunct/commit/c5762124b47b738b45545fbece1099d2a870ccd4))
50
+
51
+
52
+ ### Features
53
+
54
+ * **list:** add sortByProp ([#2384](https://github.com/char0n/ramda-adjunct/issues/2384)) ([61c2e9d](https://github.com/char0n/ramda-adjunct/commit/61c2e9de8bdfcbf941a91ea270688b1c434fdc61)), closes [#1241](https://github.com/char0n/ramda-adjunct/issues/1241)
55
+
56
+
57
+
58
+ # [3.3.0](https://github.com/char0n/ramda-adjunct/compare/v3.2.0...v3.3.0) (2022-09-18)
59
+
60
+
61
+ ### Features
62
+
63
+ * **types:** simplify types and declare named exports ([#2307](https://github.com/char0n/ramda-adjunct/issues/2307)) ([1b46e44](https://github.com/char0n/ramda-adjunct/commit/1b46e44fcc563ecb062ab4928d3c9e295287e064)), closes [#2306](https://github.com/char0n/ramda-adjunct/issues/2306) [#1467](https://github.com/char0n/ramda-adjunct/issues/1467)
64
+
65
+
66
+
67
+ # [3.2.0](https://github.com/char0n/ramda-adjunct/compare/v3.1.0...v3.2.0) (2022-06-18)
68
+
69
+
70
+ ### Features
71
+
72
+ * **type:** add isUinteger32 ([#2257](https://github.com/char0n/ramda-adjunct/issues/2257)) ([965147e](https://github.com/char0n/ramda-adjunct/commit/965147e836df98fe0fa83851d41c1268503c73e4)), closes [#1281](https://github.com/char0n/ramda-adjunct/issues/1281)
73
+
74
+
75
+
76
+ # [3.1.0](https://github.com/char0n/ramda-adjunct/compare/v3.0.0...v3.1.0) (2022-04-24)
77
+
78
+
79
+ ### Features
80
+
81
+ * **isBlank:** implemented isBlank function ([#2141](https://github.com/char0n/ramda-adjunct/issues/2141)) ([e8cf553](https://github.com/char0n/ramda-adjunct/commit/e8cf553d9ef4daa950a3358d18241356a7089fff))
82
+ * **list:** add sortByPaths ([#2104](https://github.com/char0n/ramda-adjunct/issues/2104)) ([3d59189](https://github.com/char0n/ramda-adjunct/commit/3d591897d1c564a3c18cacc569c1d29cf351315c)), closes [#1240](https://github.com/char0n/ramda-adjunct/issues/1240)
83
+
84
+
85
+
86
+ # [3.0.0](https://github.com/char0n/ramda-adjunct/compare/v2.36.0...v3.0.0) (2022-01-17)
87
+
88
+
89
+ ### Bug Fixes
90
+
91
+ * **function:** remove then ([4e5516b](https://github.com/char0n/ramda-adjunct/commit/4e5516b7e5bf8c41f3979ae604b3e331b406ea25)), closes [#2152](https://github.com/char0n/ramda-adjunct/issues/2152)
92
+ * **object:** remove hasPath ([8cc0c8f](https://github.com/char0n/ramda-adjunct/commit/8cc0c8f7859618b5ef3bc00816ed05622841a871)), closes [#2152](https://github.com/char0n/ramda-adjunct/issues/2152)
93
+ * **object:** remove mergeRight ([06a3338](https://github.com/char0n/ramda-adjunct/commit/06a3338923072c6a4ae3e5c62bc109793d76537b)), closes [#2152](https://github.com/char0n/ramda-adjunct/issues/2152)
94
+
95
+
96
+ ### Features
97
+
98
+ * add support for ramda@0.28.0 ([20acd56](https://github.com/char0n/ramda-adjunct/commit/20acd562a24759b42ec4f8ae2f3f90af95de25b0)), closes [#2152](https://github.com/char0n/ramda-adjunct/issues/2152)
99
+ * **list:** add included ([4bfafe0](https://github.com/char0n/ramda-adjunct/commit/4bfafe0593ee2d34b51eb8b5768f8618bee17f5a)), closes [#2152](https://github.com/char0n/ramda-adjunct/issues/2152)
100
+
101
+
102
+
103
+ # [2.36.0](https://github.com/char0n/ramda-adjunct/compare/v2.35.0...v2.36.0) (2022-01-17)
104
+
105
+
106
+ ### Features
107
+
108
+ * add support for ramda@0.27.2 ([39e22e1](https://github.com/char0n/ramda-adjunct/commit/39e22e1485410a7bf99a212b9c9a1d2b7ea3237f)), closes [#2152](https://github.com/char0n/ramda-adjunct/issues/2152)
109
+ * **type:** add toNumber ([#2103](https://github.com/char0n/ramda-adjunct/issues/2103)) ([d06abbf](https://github.com/char0n/ramda-adjunct/commit/d06abbfbf3b4700d78f368479404c8347785f295)), closes [#788](https://github.com/char0n/ramda-adjunct/issues/788)
110
+
111
+
112
+
113
+ # [2.35.0](https://github.com/char0n/ramda-adjunct/compare/v2.34.0...v2.35.0) (2021-11-01)
114
+
115
+
116
+ ### Features
117
+
118
+ * add copyKeys ([#1558](https://github.com/char0n/ramda-adjunct/issues/1558)) ([cf9727c](https://github.com/char0n/ramda-adjunct/commit/cf9727c08658e74597d330146c4bfc26d3b6949b)), closes [#516](https://github.com/char0n/ramda-adjunct/issues/516)
119
+
120
+
121
+
122
+ # [2.34.0](https://github.com/char0n/ramda-adjunct/compare/v2.32.0...v2.34.0) (2021-09-29)
123
+
124
+
125
+ ### Features
126
+
127
+ * **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)
128
+ * **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)
129
+
130
+
131
+
132
+ # [2.32.0](https://github.com/char0n/ramda-adjunct/compare/v2.31.1...v2.32.0) (2021-04-10)
133
+
134
+
135
+ ### Bug Fixes
136
+
137
+ * **isNotNil:** utilize type narrowing ([#1672](https://github.com/char0n/ramda-adjunct/issues/1672)) ([353a6db](https://github.com/char0n/ramda-adjunct/commit/353a6dbb5039d8a1f72b97c4c20471e2a4bb3cd8))
138
+
139
+
140
+ ### Features
141
+
142
+ * **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)
143
+ * **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)
144
+ * **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)
145
+
146
+
147
+
148
+ ## [2.31.1](https://github.com/char0n/ramda-adjunct/compare/v2.31.0...v2.31.1) (2021-02-21)
149
+
150
+
151
+ ### Bug Fixes
152
+
153
+ * **deps:** remove postinstall husky script ([61f3fde](https://github.com/char0n/ramda-adjunct/commit/61f3fde46e3c65df0f67b217621fa9532141a2fa))
154
+
155
+
156
+
157
+ # [2.31.0](https://github.com/char0n/ramda-adjunct/compare/v2.30.0...v2.31.0) (2021-02-21)
158
+
159
+
160
+ ### Features
161
+
162
+ * **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)
163
+ * **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)
164
+ * **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)
165
+
166
+
167
+
168
+ # [2.30.0](https://github.com/char0n/ramda-adjunct/compare/v2.29.0...v2.30.0) (2020-12-27)
169
+
170
+
171
+ ### Bug Fixes
172
+
173
+ * **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)
174
+
175
+
176
+ ### Features
177
+
178
+ * **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)
179
+ * **relation:** add overlaps ([2ea5355](https://github.com/char0n/ramda-adjunct/commit/2ea5355608a9016c96de39a87d48f21016bef330)), closes [#1229](https://github.com/char0n/ramda-adjunct/issues/1229)
180
+ * **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)
181
+
182
+
183
+
184
+ # [2.29.0](https://github.com/char0n/ramda-adjunct/compare/v2.28.0...v2.29.0) (2020-12-13)
185
+
186
+
187
+ ### Bug Fixes
188
+
189
+ * **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)
190
+ * **repalceAll:** 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)
191
+
192
+
193
+ ### Features
194
+
195
+ * **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)
196
+ * **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)
197
+ * **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)
198
+
199
+
200
+
201
+ # [2.28.0](https://github.com/char0n/ramda-adjunct/compare/v2.27.0...v2.28.0) (2020-09-13)
202
+
203
+
204
+ ### Features
205
+
206
+ * 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)
207
+ * **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)
208
+ * **Math:** add toUinteger32 ([cdbdd3c](https://github.com/char0n/ramda-adjunct/commit/cdbdd3c44b549e2d97e0ae122463cb8c8120ea83)), closes [#1278](https://github.com/char0n/ramda-adjunct/issues/1278)
209
+
210
+
211
+
212
+ # [2.27.0](https://github.com/char0n/ramda-adjunct/compare/v2.26.0...v2.27.0) (2020-05-23)
213
+
214
+
215
+ ### Bug Fixes
216
+
217
+ * **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/57cfab2e93e1c6a2e7ba50f220dfb36fc27ee41f)), closes [#1412](https://github.com/char0n/ramda-adjunct/issues/1412)
218
+
219
+
220
+ ### Features
221
+
222
+ * add isBigInt ([#1406](https://github.com/char0n/ramda-adjunct/issues/1406)) ([67dfe1e](https://github.com/char0n/ramda-adjunct/commit/67dfe1e66db59b4cdfa7bea5647c5ba7d465cd09)), closes [#1253](https://github.com/char0n/ramda-adjunct/issues/1253)
223
+ * add isNotMap ([#1433](https://github.com/char0n/ramda-adjunct/issues/1433)) ([3378238](https://github.com/char0n/ramda-adjunct/commit/33782387f36c7a83369ef4260bd6c2dc4c826ccf)), closes [#1122](https://github.com/char0n/ramda-adjunct/issues/1122)
224
+ * add thenCatchP ([#1322](https://github.com/char0n/ramda-adjunct/issues/1322)) ([54256f3](https://github.com/char0n/ramda-adjunct/commit/54256f34da171b08e0a30b4c198aa697693d1662)), closes [#1233](https://github.com/char0n/ramda-adjunct/issues/1233)
225
+ * **object:** add invokeArgs ([#1409](https://github.com/char0n/ramda-adjunct/issues/1409)) ([ea725f1](https://github.com/char0n/ramda-adjunct/commit/ea725f16a6019c5cda054e4fa27c9fac1617927e)), closes [#1239](https://github.com/char0n/ramda-adjunct/issues/1239)
226
+ * **type:** add isNotSet ([#1434](https://github.com/char0n/ramda-adjunct/issues/1434)) ([9ecfaa7](https://github.com/char0n/ramda-adjunct/commit/9ecfaa7534de38d00eb76adc03ee0ae5c6c86618)), closes [#1123](https://github.com/char0n/ramda-adjunct/issues/1123)
227
+
228
+
229
+
230
+ # [2.26.0](https://github.com/char0n/ramda-adjunct/compare/v2.25.0...v2.26.0) (2020-03-16)
231
+
232
+
233
+ ### Bug Fixes
234
+
235
+ * **mapIndexed:** make list argument Readonly ([#1336](https://github.com/char0n/ramda-adjunct/issues/1336)) ([5555ef3](https://github.com/char0n/ramda-adjunct/commit/5555ef34ec3bbcfd7d4e69615dbd268f8f79033c)), closes [#1330](https://github.com/char0n/ramda-adjunct/issues/1330)
236
+
237
+
238
+ ### Features
239
+
240
+ * add fnull ([#1321](https://github.com/char0n/ramda-adjunct/issues/1321)) ([4d0e49a](https://github.com/char0n/ramda-adjunct/commit/4d0e49a067439be21ddb525cc8a0d5090395421a)), closes [#1235](https://github.com/char0n/ramda-adjunct/issues/1235)
241
+ * add isIndexed ([#1337](https://github.com/char0n/ramda-adjunct/issues/1337)) ([c4447db](https://github.com/char0n/ramda-adjunct/commit/c4447db7b083c6aeb0da276bb026562d21159bff)), closes [#1236](https://github.com/char0n/ramda-adjunct/issues/1236)
242
+ * add skipTake ([#1338](https://github.com/char0n/ramda-adjunct/issues/1338)) ([10c4141](https://github.com/char0n/ramda-adjunct/commit/10c41411733f5d07f8450ad4da59d11d395ae221)), closes [#1237](https://github.com/char0n/ramda-adjunct/issues/1237)
243
+ * add sortByProps ([#1323](https://github.com/char0n/ramda-adjunct/issues/1323)) ([7d93795](https://github.com/char0n/ramda-adjunct/commit/7d93795fd054b56b6a49b6eb21f7bc46bafa9b58)), closes [#1242](https://github.com/char0n/ramda-adjunct/issues/1242)
244
+
245
+
246
+
247
+ # [2.25.0](https://github.com/char0n/ramda-adjunct/compare/v2.24.0...v2.25.0) (2020-02-04)
248
+
249
+
250
+ ### Features
251
+
252
+ * add padStart ([#1287](https://github.com/char0n/ramda-adjunct/issues/1287)) ([054e9aa](https://github.com/char0n/ramda-adjunct/commit/054e9aa47bf334cc664a4e56ec896fbc184b28b1)), closes [#1103](https://github.com/char0n/ramda-adjunct/issues/1103)
253
+ * add support for ramda 0.27.0 ([#1304](https://github.com/char0n/ramda-adjunct/issues/1304)) ([78d776b](https://github.com/char0n/ramda-adjunct/commit/78d776bc0d7e8d383cc7f848122ae383d2457862))
254
+ * add trimCharsEnd ([11293cf](https://github.com/char0n/ramda-adjunct/commit/11293cf1ffefd2fcd887e6fb563b0bc14acd2ab3)), closes [#1136](https://github.com/char0n/ramda-adjunct/issues/1136)
255
+
256
+
257
+
258
+ # [2.24.0](https://github.com/char0n/ramda-adjunct/compare/v2.23.0...v2.24.0) (2020-01-15)
259
+
260
+
261
+ ### Features
262
+
263
+ * add trimCharsStart ([#1254](https://github.com/char0n/ramda-adjunct/issues/1254)) ([21fdacd](https://github.com/char0n/ramda-adjunct/commit/21fdacd412ee8866d97a5a1d9fb574d4f2447d89)), closes [#1135](https://github.com/char0n/ramda-adjunct/issues/1135)
264
+
265
+
266
+
267
+ # [2.23.0](https://github.com/char0n/ramda-adjunct/compare/v2.22.1...v2.23.0) (2019-11-25)
268
+
269
+
270
+ ### Features
271
+
272
+ * **function:** add delayP ([#1107](https://github.com/char0n/ramda-adjunct/issues/1107)) ([b6c1856](https://github.com/char0n/ramda-adjunct/commit/b6c185604e99a9cb518431d7031093b82ab871ec)), closes [#1099](https://github.com/char0n/ramda-adjunct/issues/1099)
273
+ * **function:** add lastP ([#1127](https://github.com/char0n/ramda-adjunct/issues/1127)) ([7fe4836](https://github.com/char0n/ramda-adjunct/commit/7fe4836e64382776c358703e12ae92b917dcd42a)), closes [#816](https://github.com/char0n/ramda-adjunct/issues/816)
274
+
275
+
276
+
277
+ ## [2.22.1](https://github.com/char0n/ramda-adjunct/compare/v2.22.0...v2.22.1) (2019-11-06)
278
+
279
+
280
+
281
+ # [2.22.0](https://github.com/char0n/ramda-adjunct/compare/v2.21.0...v2.22.0) (2019-11-01)
282
+
283
+
284
+ ### Features
285
+
286
+ * **function:** add anyP ([#1080](https://github.com/char0n/ramda-adjunct/issues/1080)) ([f8e87a8](https://github.com/char0n/ramda-adjunct/commit/f8e87a8c71fcf0023d00d87c8fe8c04944bf2d0d)), closes [#807](https://github.com/char0n/ramda-adjunct/issues/807)
287
+ * **function:** add firstP alias for anyP ([5926aa0](https://github.com/char0n/ramda-adjunct/commit/5926aa092005d8bd8e5e4b4907d528e68bee6914))
288
+ * **function:** add noneP ([#1095](https://github.com/char0n/ramda-adjunct/issues/1095)) ([9eacf26](https://github.com/char0n/ramda-adjunct/commit/9eacf26aac927f6f15e5227c5e1264290abd3033)), closes [#814](https://github.com/char0n/ramda-adjunct/issues/814)
289
+ * **list:** add allUnique ([#1117](https://github.com/char0n/ramda-adjunct/issues/1117)) ([63a8f46](https://github.com/char0n/ramda-adjunct/commit/63a8f46436f19d6e6374524b42e8e8aadd30e220)), closes [#515](https://github.com/char0n/ramda-adjunct/issues/515)
290
+ * **list:** add notAllUnique ([#1125](https://github.com/char0n/ramda-adjunct/issues/1125)) ([6d5005f](https://github.com/char0n/ramda-adjunct/commit/6d5005fe92ee868141486988f0efab7775a704cd)), closes [#515](https://github.com/char0n/ramda-adjunct/issues/515)
291
+ * **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/eb0e66fd90a395e46e49f7fa1caf4d6efd6344bd))
292
+ * **math:** add divideNum ([#1081](https://github.com/char0n/ramda-adjunct/issues/1081)) ([7b0c3b2](https://github.com/char0n/ramda-adjunct/commit/7b0c3b298a06c35aa1e501666aeaff977616d2f6)), closes [#482](https://github.com/char0n/ramda-adjunct/issues/482)
293
+ * **math:** add subtractNum ([#1082](https://github.com/char0n/ramda-adjunct/issues/1082)) ([7080706](https://github.com/char0n/ramda-adjunct/commit/7080706a36a190726e61271151a6c990aaa91d58)), closes [#483](https://github.com/char0n/ramda-adjunct/issues/483)
294
+ * **object:** add pathOrLazy ([#1086](https://github.com/char0n/ramda-adjunct/issues/1086)) ([4fbf439](https://github.com/char0n/ramda-adjunct/commit/4fbf4399b50f5d5a83ac6c56ea035a64762c391d)), closes [#1084](https://github.com/char0n/ramda-adjunct/issues/1084)
295
+ * **object:** add unzipObjWith ([#1130](https://github.com/char0n/ramda-adjunct/issues/1130)) ([64ce9b6](https://github.com/char0n/ramda-adjunct/commit/64ce9b6e454072973e1ca0e9151e86279a669340)), closes [#801](https://github.com/char0n/ramda-adjunct/issues/801)
296
+ * **object:** add zipObjWith ([#1132](https://github.com/char0n/ramda-adjunct/issues/1132)) ([b803a7a](https://github.com/char0n/ramda-adjunct/commit/b803a7a10a1c1bafbb64dc802d0ce1e7882d879c)), closes [#1129](https://github.com/char0n/ramda-adjunct/issues/1129)
297
+ * **replaceAll:** implement TC39 proposal ([#1124](https://github.com/char0n/ramda-adjunct/issues/1124)) ([74d5163](https://github.com/char0n/ramda-adjunct/commit/74d5163fa1650faec6365dbbede4c3e4939f98aa)), closes [#878](https://github.com/char0n/ramda-adjunct/issues/878)
298
+ * **string:** add padCharsEnd ([#1131](https://github.com/char0n/ramda-adjunct/issues/1131)) ([c3848be](https://github.com/char0n/ramda-adjunct/commit/c3848be7306a92585b7983a00a6f4bb451e5a19b)), closes [#1104](https://github.com/char0n/ramda-adjunct/issues/1104)
299
+ * **string:** add padCharsStart ([#1143](https://github.com/char0n/ramda-adjunct/issues/1143)) ([4a54edd](https://github.com/char0n/ramda-adjunct/commit/4a54edd703d0bd9703b80d7622020bfc600cd2a6))
300
+ * **string:** add padEnd ([ac4e319](https://github.com/char0n/ramda-adjunct/commit/ac4e319aef7953542a5542096479630af060030f)), closes [#1105](https://github.com/char0n/ramda-adjunct/issues/1105)
301
+ * **string:** add trimEnd ([#1134](https://github.com/char0n/ramda-adjunct/issues/1134)) ([4b8ec88](https://github.com/char0n/ramda-adjunct/commit/4b8ec884719282293e64d672ab6b4b8b16979a4a)), closes [#808](https://github.com/char0n/ramda-adjunct/issues/808)
302
+ * **string:** add trimStart ([#1116](https://github.com/char0n/ramda-adjunct/issues/1116)) ([6ba2882](https://github.com/char0n/ramda-adjunct/commit/6ba288286fd7e4f7a377c9d143112815fa71ebc2)), closes [#808](https://github.com/char0n/ramda-adjunct/issues/808)
303
+ * **type:** add isSafeInteger ([#1112](https://github.com/char0n/ramda-adjunct/issues/1112)) ([bcb1f98](https://github.com/char0n/ramda-adjunct/commit/bcb1f981fd46043fa1d1b3b95da00fac2d6f5b10)), closes [#747](https://github.com/char0n/ramda-adjunct/issues/747)
304
+ * **type:** add isMap ([#1120](https://github.com/char0n/ramda-adjunct/issues/1120)) ([fdd932a](https://github.com/char0n/ramda-adjunct/commit/fdd932a18dba20c6120423e8e8708c4c70206eff)), closes [#1113](https://github.com/char0n/ramda-adjunct/issues/1113)
305
+ * **type:** add isNegativeZero ([#1109](https://github.com/char0n/ramda-adjunct/issues/1109)) ([d209ac5](https://github.com/char0n/ramda-adjunct/commit/d209ac5db1d1da8fd64fe28ad443d0ca56bcdf00)), closes [#784](https://github.com/char0n/ramda-adjunct/issues/784)
306
+ * **type:** add isSet ([#1114](https://github.com/char0n/ramda-adjunct/issues/1114)) ([00d6347](https://github.com/char0n/ramda-adjunct/commit/00d63473918b063e87299bcd005c30dbc2b126c5)), closes [#1110](https://github.com/char0n/ramda-adjunct/issues/1110)
307
+ * **type:** add isSymbol ([#1079](https://github.com/char0n/ramda-adjunct/issues/1079)) ([49268f9](https://github.com/char0n/ramda-adjunct/commit/49268f9b23a7056588a4ef7f38ea0d7208791ceb)), closes [#806](https://github.com/char0n/ramda-adjunct/issues/806)
308
+ * **type:** isPositiveZero ([#1111](https://github.com/char0n/ramda-adjunct/issues/1111)) ([337c9d3](https://github.com/char0n/ramda-adjunct/commit/337c9d36f839a960e43ff014084ea84b7486da89))
309
+
310
+
311
+
312
+ # [2.21.0](https://github.com/char0n/ramda-adjunct/compare/v2.20.0...v2.21.0) (2019-09-25)
313
+
314
+
315
+ ### Features
316
+
317
+ * **string:** add escapeRegExp ([6b676af](https://github.com/char0n/ramda-adjunct/commit/6b676af4113292f5e258acdc16d950319c3c87e4)), closes [#880](https://github.com/char0n/ramda-adjunct/issues/880)
318
+
319
+
320
+
321
+ # [2.20.0](https://github.com/char0n/ramda-adjunct/compare/v2.19.2...v2.20.0) (2019-09-08)
322
+
323
+
324
+ ### Features
325
+
326
+ * **logic:** add nor ([#1023](https://github.com/char0n/ramda-adjunct/issues/1023)) ([608ff01](https://github.com/char0n/ramda-adjunct/commit/608ff01abee6657945397abb8c1dd9d9e6bf7714)), closes [#285](https://github.com/char0n/ramda-adjunct/issues/285)
327
+ * **type:** add isSparseArray predicate ([4f558a1](https://github.com/char0n/ramda-adjunct/commit/4f558a1f2276c06ec002a8e9c9a369b13a18d7b4)), closes [#785](https://github.com/char0n/ramda-adjunct/issues/785)
328
+
329
+
330
+
331
+ ## [2.19.2](https://github.com/char0n/ramda-adjunct/compare/v2.19.1...v2.19.2) (2019-08-27)
332
+
333
+
334
+ ### Bug Fixes
335
+
336
+ * include donate script into npm distribution ([e477be3](https://github.com/char0n/ramda-adjunct/commit/e477be31a2c40ba9a376ed2a0c1ec88a7a1e9a81))
337
+
338
+
339
+
340
+ ## [2.19.1](https://github.com/char0n/ramda-adjunct/compare/v2.19.0...v2.19.1) (2019-08-27)
341
+
342
+
343
+
344
+ # [2.19.0](https://github.com/char0n/ramda-adjunct/compare/v2.18.0...v2.19.0) (2019-08-12)
345
+
346
+
347
+ ### Features
348
+
349
+ * add flattenDepth ([#946](https://github.com/char0n/ramda-adjunct/issues/946)) ([3c4651a](https://github.com/char0n/ramda-adjunct/commit/3c4651ab14be59c697e5048db9899ac1558b38bb)), closes [#844](https://github.com/char0n/ramda-adjunct/issues/844)
350
+ * **isNotFloat:** add support for ramda placeholder ([4b9934f](https://github.com/char0n/ramda-adjunct/commit/4b9934f804317d09aaeb9b6fb9ea52882eb2233c)), closes [#624](https://github.com/char0n/ramda-adjunct/issues/624)
351
+ * **logic:** add nand ([#952](https://github.com/char0n/ramda-adjunct/issues/952)) ([7931fa0](https://github.com/char0n/ramda-adjunct/commit/7931fa01ae9e5befadbb0034a2f565fddf6330ab)), closes [#237](https://github.com/char0n/ramda-adjunct/issues/237)
352
+
353
+
354
+
355
+ # [2.18.0](https://github.com/char0n/ramda-adjunct/compare/v2.17.0...v2.18.0) (2019-05-26)
356
+
357
+
358
+ ### Bug Fixes
359
+
360
+ * **mergePath:** fix TS typings ([#928](https://github.com/char0n/ramda-adjunct/issues/928)) ([4aebb39](https://github.com/char0n/ramda-adjunct/commit/4aebb392f897e933802656c658879a93de6289cf)), closes [#925](https://github.com/char0n/ramda-adjunct/issues/925)
361
+
362
+
363
+ ### Features
364
+
365
+ * add allSettledP ([1e56c50](https://github.com/char0n/ramda-adjunct/commit/1e56c50929c7d88c3052c656230a6e96bb58a21b)), closes [#761](https://github.com/char0n/ramda-adjunct/issues/761)
366
+ * add isIterable ([#935](https://github.com/char0n/ramda-adjunct/issues/935)) ([8a67554](https://github.com/char0n/ramda-adjunct/commit/8a675545f559d2c06ed53a0659919b549c79d104)), closes [#351](https://github.com/char0n/ramda-adjunct/issues/351)
367
+ * add isNotNilOrEmpty ([#912](https://github.com/char0n/ramda-adjunct/issues/912)) ([3fedee4](https://github.com/char0n/ramda-adjunct/commit/3fedee42960b31df124ed86317ba9862ba984a5f)), closes [#70](https://github.com/char0n/ramda-adjunct/issues/70)
368
+ * **cata:** add support for more catamorphic types ([adc3d11](https://github.com/char0n/ramda-adjunct/commit/adc3d11167f4fb2320e5f75748330266357377b1)), closes [#922](https://github.com/char0n/ramda-adjunct/issues/922)
369
+ * **isNegative:** add support Ramda placeholder ([86b7e1c](https://github.com/char0n/ramda-adjunct/commit/86b7e1ca88b5f170ad977d930dc907a61734ad68)), closes [#624](https://github.com/char0n/ramda-adjunct/issues/624)
370
+ * **isNilOrEmpty:** add support for Ramda placeholder ([22f4ec2](https://github.com/char0n/ramda-adjunct/commit/22f4ec2f3b9917391959c96a3ffb36381c82ae17)), closes [#624](https://github.com/char0n/ramda-adjunct/issues/624)
371
+ * **isNonNegative:** add support for Ramda placeholder ([87f97de](https://github.com/char0n/ramda-adjunct/commit/87f97def18d1f27c94d92474fa2ec1e1bd1b21c5)), closes [#624](https://github.com/char0n/ramda-adjunct/issues/624)
372
+ * **isNonPositive:** add support for Ramda placeholder ([b6b358f](https://github.com/char0n/ramda-adjunct/commit/b6b358fb6bbacae0845e01b35de0fab88481fd2a)), closes [#624](https://github.com/char0n/ramda-adjunct/issues/624)
373
+
374
+
375
+
376
+ # [2.17.0](https://github.com/char0n/ramda-adjunct/compare/v2.16.1...v2.17.0) (2019-04-14)
377
+
378
+
379
+ ### Features
380
+
381
+ * add replaceAll ([84c7066](https://github.com/char0n/ramda-adjunct/commit/84c7066f002e0f7e7a136a8cbf80c48c9d7aea43)), closes [#878](https://github.com/char0n/ramda-adjunct/issues/878)
382
+
383
+
384
+
385
+ ## [2.16.1](https://github.com/char0n/ramda-adjunct/compare/v2.16.0...v2.16.1) (2019-02-19)
386
+
387
+
388
+ ### Bug Fixes
389
+
390
+ * **typings:** remove accidental import ([3e7bfae](https://github.com/char0n/ramda-adjunct/commit/3e7bfae94c80d2de0950655c3de96905f76b3933)), closes [#838](https://github.com/char0n/ramda-adjunct/issues/838)
391
+
392
+
393
+
394
+ # [2.16.0](https://github.com/char0n/ramda-adjunct/compare/v2.15.0...v2.16.0) (2019-02-17)
395
+
396
+
397
+ ### Features
398
+
399
+ * add async ([cbd709f](https://github.com/char0n/ramda-adjunct/commit/cbd709f9f65d96273872d31919bd6a551d8bb22a)), closes [#830](https://github.com/char0n/ramda-adjunct/issues/830)
400
+
401
+
402
+
403
+ # [2.15.0](https://github.com/char0n/ramda-adjunct/compare/v2.14.0...v2.15.0) (2019-02-10)
404
+
405
+
406
+ ### Features
407
+
408
+ * add ceil ([d9dee2b](https://github.com/char0n/ramda-adjunct/commit/d9dee2bba6e8afa319e3bf83d24a890fe69ff35d)), closes [#748](https://github.com/char0n/ramda-adjunct/issues/748)
409
+ * add floor ([0ce6fbe](https://github.com/char0n/ramda-adjunct/commit/0ce6fbe4d290550ef11e50d6038d8bf413adc453)), closes [#748](https://github.com/char0n/ramda-adjunct/issues/748)
410
+ * add round ([eab931c](https://github.com/char0n/ramda-adjunct/commit/eab931c16336a10872b314c5409bfff83730f96c)), closes [#106](https://github.com/char0n/ramda-adjunct/issues/106)
411
+ * add sign ([6d2a080](https://github.com/char0n/ramda-adjunct/commit/6d2a08059beab54bdc03c5bbc06eb6684931a12a)), closes [#748](https://github.com/char0n/ramda-adjunct/issues/748)
412
+ * add trunc ([ddfb12e](https://github.com/char0n/ramda-adjunct/commit/ddfb12edc18ddd2317c05796ec512dffb62ec77a)), closes [#748](https://github.com/char0n/ramda-adjunct/issues/748)
413
+
414
+
415
+
416
+ # [2.14.0](https://github.com/char0n/ramda-adjunct/compare/v2.13.0...v2.14.0) (2019-01-24)
417
+
418
+
419
+ ### Bug Fixes
420
+
421
+ * **package:** contributor url ([d341922](https://github.com/char0n/ramda-adjunct/commit/d3419221d1ef01bcf05f20ae02ef46025d4dc59c))
422
+
423
+
424
+ ### Features
425
+
426
+ * **dispatch:** add support for currying ([6187992](https://github.com/char0n/ramda-adjunct/commit/61879929acf03d502b068686449668aa78ff92ce))
427
+ * **isArrayLike:** add support for currying ([a3e843c](https://github.com/char0n/ramda-adjunct/commit/a3e843c64e1526c1452c13468dd774564be61785))
428
+ * **isAsyncFunction:** add support for ramda placeholder ([4747e6a](https://github.com/char0n/ramda-adjunct/commit/4747e6a7935e4c753b504f905d7ba7986a387eb1)), closes [#624](https://github.com/char0n/ramda-adjunct/issues/624)
429
+ * **isBoolean:** add ramda placeholder support ([3c7ee1c](https://github.com/char0n/ramda-adjunct/commit/3c7ee1cb7aa3bf72a614f9c2d7c5423138b06e3c)), closes [#624](https://github.com/char0n/ramda-adjunct/issues/624)
430
+ * **isDate:** add ramda placeholder support ([96d0772](https://github.com/char0n/ramda-adjunct/commit/96d0772005ddf262ef2871ca5484dc156eb49805)), closes [#624](https://github.com/char0n/ramda-adjunct/issues/624)
431
+ * **isEven:** add support for ramda placeholder ([47aae9c](https://github.com/char0n/ramda-adjunct/commit/47aae9ce32c856bc791c4060ba968cd9cf65540d)), closes [#624](https://github.com/char0n/ramda-adjunct/issues/624)
432
+ * **isFinite:** add support for ramda placeholder ([3c8b161](https://github.com/char0n/ramda-adjunct/commit/3c8b161a0971056fcddde3b5ff7bf7b3d2ff7658)), closes [#624](https://github.com/char0n/ramda-adjunct/issues/624)
433
+ * **isFloat:** add support for ramda placeholder ([8374ba9](https://github.com/char0n/ramda-adjunct/commit/8374ba9a2e8d74ec36faaf68cde118943d411fea)), closes [#624](https://github.com/char0n/ramda-adjunct/issues/624)
434
+ * **isGeneratorFunction:** add support ramda placeholder ([84e8816](https://github.com/char0n/ramda-adjunct/commit/84e88165bb5ef33b69270cd691fcf6f30697dedf)), closes [#624](https://github.com/char0n/ramda-adjunct/issues/624)
435
+ * **isInteger:** add support for ramda placeholder ([69d9f2c](https://github.com/char0n/ramda-adjunct/commit/69d9f2c5e537a58ed5c78251b12a822b334a469a)), closes [#624](https://github.com/char0n/ramda-adjunct/issues/624)
436
+ * **isNaN:** add support for ramda placeholder ([ec09c4c](https://github.com/char0n/ramda-adjunct/commit/ec09c4c8d0a6663b31e11ffbca7b1f3886d5d6a9)), closes [#624](https://github.com/char0n/ramda-adjunct/issues/624)
437
+
438
+
439
+
440
+ # [2.13.0](https://github.com/char0n/ramda-adjunct/compare/v2.12.0...v2.13.0) (2018-12-08)
441
+
442
+
443
+ ### Bug Fixes
444
+
445
+ * **isBoolean:** make this predicate work in different realms ([b89ade0](https://github.com/char0n/ramda-adjunct/commit/b89ade01149e6a6226f0e0cb353cf546d054e88e)), closes [#724](https://github.com/char0n/ramda-adjunct/issues/724)
446
+ * **isDate:** make this predicate work in different realms ([1963c2d](https://github.com/char0n/ramda-adjunct/commit/1963c2ddaabd080209632d32eeb1825d56366427)), closes [#724](https://github.com/char0n/ramda-adjunct/issues/724)
447
+ * **isRegExp:** make this predicate work in different realms ([f0150a9](https://github.com/char0n/ramda-adjunct/commit/f0150a9325c2b0cbc525f19545178ca41f402f38)), closes [#724](https://github.com/char0n/ramda-adjunct/issues/724)
448
+
449
+
450
+ ### Features
451
+
452
+ * add support for ramda@0.26.1 ([2de8c22](https://github.com/char0n/ramda-adjunct/commit/2de8c2212fddb06359f2dc96d1e7a93fa8b60eef))
453
+
454
+
455
+
456
+ # [2.12.0](https://github.com/char0n/ramda-adjunct/compare/v2.11.0...v2.12.0) (2018-11-25)
457
+
458
+
459
+
460
+ # [2.11.0](https://github.com/char0n/ramda-adjunct/compare/v2.10.0...v2.11.0) (2018-10-28)
461
+
462
+
463
+ ### Features
464
+
465
+ * add allEqualTo ([d14dac9](https://github.com/char0n/ramda-adjunct/commit/d14dac9da8a45a722236d3d3f68ebea81ae74204)), closes [#525](https://github.com/char0n/ramda-adjunct/issues/525)
466
+ * add allIdentical ([c5267f5](https://github.com/char0n/ramda-adjunct/commit/c5267f534716a3b8a7aafde39a36cea05c688b92)), closes [#578](https://github.com/char0n/ramda-adjunct/issues/578)
467
+ * add allIdenticalTo ([fb61085](https://github.com/char0n/ramda-adjunct/commit/fb61085924552a034f26d51444ce54d115bc6c94)), closes [#525](https://github.com/char0n/ramda-adjunct/issues/525)
468
+ * add repeatStr ([f1c5dfa](https://github.com/char0n/ramda-adjunct/commit/f1c5dfaac3b38a5599a6bb71a570205b025c7112)), closes [#667](https://github.com/char0n/ramda-adjunct/issues/667)
469
+
470
+
471
+
472
+ # [2.10.0](https://github.com/char0n/ramda-adjunct/compare/v2.9.0...v2.10.0) (2018-09-09)
473
+
474
+
475
+ ### Features
476
+
477
+ * add dropArgs ([197b3f1](https://github.com/char0n/ramda-adjunct/commit/197b3f15e91ac707a8c79083d2ee1dd22f825778)), closes [#679](https://github.com/char0n/ramda-adjunct/issues/679)
478
+ * add support for ramda placeholder ([9539e92](https://github.com/char0n/ramda-adjunct/commit/9539e92e23d3c4a5d527415b51d0002d721f960d)), closes [#624](https://github.com/char0n/ramda-adjunct/issues/624)
479
+
480
+
481
+
482
+ # [2.9.0](https://github.com/char0n/ramda-adjunct/compare/v2.8.0...v2.9.0) (2018-05-29)
483
+
484
+
485
+ ### Features
486
+
487
+ * add allEqual ([#572](https://github.com/char0n/ramda-adjunct/issues/572)) ([c362939](https://github.com/char0n/ramda-adjunct/commit/c3629391fd70c5165e02c7fb18e9f839d92dc5bf))
488
+
489
+
490
+
491
+ # [2.8.0](https://github.com/char0n/ramda-adjunct/compare/v2.7.0...v2.8.0) (2018-05-13)
492
+
493
+
494
+ ### Bug Fixes
495
+
496
+ * **commitlint:** missing dependency ([32ae33c](https://github.com/char0n/ramda-adjunct/commit/32ae33c01530b0af2b0cc7d0853535e86e4b38d9))
497
+ * **package:** incorrect format for keywords ([#547](https://github.com/char0n/ramda-adjunct/issues/547)) ([205dd8f](https://github.com/char0n/ramda-adjunct/commit/205dd8fd4bc96a9150cc904a4e5d6e56378d2639))
498
+
499
+
500
+ ### Features
501
+
502
+ * add contained ([#510](https://github.com/char0n/ramda-adjunct/issues/510)) ([381f2df](https://github.com/char0n/ramda-adjunct/commit/381f2df2fb9dbc4f9aea18d0e645c965209becad)), closes [#392](https://github.com/char0n/ramda-adjunct/issues/392)
503
+ * add lengthEq and lengthNotEq ([#552](https://github.com/char0n/ramda-adjunct/issues/552)) ([f71ad1e](https://github.com/char0n/ramda-adjunct/commit/f71ad1e1a77ad436ff82ecf35048b1ea8c5a6492)), closes [#444](https://github.com/char0n/ramda-adjunct/issues/444)
504
+ * add lengthLt, lengthGt, lengthLte, lengthGte ([47d4560](https://github.com/char0n/ramda-adjunct/commit/47d456028eddb2a1c12e06200a5d4d8ef7f7702c))
505
+ * add RA.move ([#507](https://github.com/char0n/ramda-adjunct/issues/507)) ([22ecfc0](https://github.com/char0n/ramda-adjunct/commit/22ecfc09e67e4a73d797f85332543a58227a9dfd)), closes [#485](https://github.com/char0n/ramda-adjunct/issues/485)
506
+ * add thenP ([#551](https://github.com/char0n/ramda-adjunct/issues/551)) ([92ba7b5](https://github.com/char0n/ramda-adjunct/commit/92ba7b5ef354c08efcb8ae25c48d0ab8a64bed08)), closes [#35](https://github.com/char0n/ramda-adjunct/issues/35)
507
+
508
+
509
+
510
+ # [2.7.0](https://github.com/char0n/ramda-adjunct/compare/v2.6.0...v2.7.0) (2018-04-25)
511
+
512
+
513
+ ### Features
514
+
515
+ * add argsPass ([#437](https://github.com/char0n/ramda-adjunct/issues/437)) ([f7d7f7c](https://github.com/char0n/ramda-adjunct/commit/f7d7f7c454c2e49806b3fc0e1e521577a38ea544)), closes [#370](https://github.com/char0n/ramda-adjunct/issues/370)
516
+ * add inRange ([#436](https://github.com/char0n/ramda-adjunct/issues/436)) ([9937600](https://github.com/char0n/ramda-adjunct/commit/99376002198d67dfc073a19202d06265ddfbbb97)), closes [#393](https://github.com/char0n/ramda-adjunct/issues/393)
517
+ * add traversable lenses ([#494](https://github.com/char0n/ramda-adjunct/issues/494)) ([d34be73](https://github.com/char0n/ramda-adjunct/commit/d34be73111eb944e0e8d9b6c3f0b7f936d91e95c))
518
+
519
+
520
+
521
+ # [2.6.0](https://github.com/char0n/ramda-adjunct/compare/v2.5.0...v2.6.0) (2018-03-19)
522
+
523
+
524
+ ### Features
525
+
526
+ * add concatAll ([#404](https://github.com/char0n/ramda-adjunct/issues/404)) ([341f3f1](https://github.com/char0n/ramda-adjunct/commit/341f3f1797e75c469fd7e02e4faa457defeb8d85)), closes [#109](https://github.com/char0n/ramda-adjunct/issues/109)
527
+ * add dispatch ([#407](https://github.com/char0n/ramda-adjunct/issues/407)) ([fb5aa08](https://github.com/char0n/ramda-adjunct/commit/fb5aa08cd6d1ae13974fed29e47cd9b5d82c5a79)), closes [#66](https://github.com/char0n/ramda-adjunct/issues/66)
528
+ * add ensureArray ([#375](https://github.com/char0n/ramda-adjunct/issues/375)) ([7b60189](https://github.com/char0n/ramda-adjunct/commit/7b601899b39f4d1a2e7add08f7540f0ccadbf89c)), closes [#371](https://github.com/char0n/ramda-adjunct/issues/371)
529
+ * add isNonPositive, isNonNegative ([#434](https://github.com/char0n/ramda-adjunct/issues/434)) ([8d62dc1](https://github.com/char0n/ramda-adjunct/commit/8d62dc1df1727157e204961bc6d68a7e4a5adcaa)), closes [#324](https://github.com/char0n/ramda-adjunct/issues/324)
530
+ * add isTrue, isFalse ([#435](https://github.com/char0n/ramda-adjunct/issues/435)) ([9687b51](https://github.com/char0n/ramda-adjunct/commit/9687b5100c2d6b51d89724bd94380234260115ed)), closes [#255](https://github.com/char0n/ramda-adjunct/issues/255)
531
+ * add omitBy ([#376](https://github.com/char0n/ramda-adjunct/issues/376)) ([c7c9c7e](https://github.com/char0n/ramda-adjunct/commit/c7c9c7e07f938d688c26ad91d1b6a6b3abd3c5cf)), closes [#171](https://github.com/char0n/ramda-adjunct/issues/171)
532
+
533
+
534
+
535
+ # [2.5.0](https://github.com/char0n/ramda-adjunct/compare/v2.4.1...v2.5.0) (2018-02-14)
536
+
537
+
538
+ ### Bug Fixes
539
+
540
+ * remove defaults from mergeRight aliases ([#344](https://github.com/char0n/ramda-adjunct/issues/344)) ([6e13e7c](https://github.com/char0n/ramda-adjunct/commit/6e13e7c37da018b12ef63d377b2a82efa94ecf71)), closes [#338](https://github.com/char0n/ramda-adjunct/issues/338)
541
+
542
+
543
+ ### Features
544
+
545
+ * add appendFlipped ([#347](https://github.com/char0n/ramda-adjunct/issues/347)) ([9a30238](https://github.com/char0n/ramda-adjunct/commit/9a30238d92b0415f65cfc633dc028a8da8f0c7fa)), closes [#333](https://github.com/char0n/ramda-adjunct/issues/333)
546
+ * add compact ([#331](https://github.com/char0n/ramda-adjunct/issues/331)) ([865a2ce](https://github.com/char0n/ramda-adjunct/commit/865a2ce2dad202c23c5a37a95154971b8867907b)), closes [#127](https://github.com/char0n/ramda-adjunct/issues/127)
547
+ * add mapIndexed ([#345](https://github.com/char0n/ramda-adjunct/issues/345)) ([3fcd0c2](https://github.com/char0n/ramda-adjunct/commit/3fcd0c29db89112e8162f410c3f19d505f9631c6)), closes [#282](https://github.com/char0n/ramda-adjunct/issues/282)
548
+ * add reduceIndexed ([#357](https://github.com/char0n/ramda-adjunct/issues/357)) ([ea6fd59](https://github.com/char0n/ramda-adjunct/commit/ea6fd590602c3ac7ce1781af2dd959ee794c6c93)), closes [#281](https://github.com/char0n/ramda-adjunct/issues/281)
549
+ * **nonePass:** Add complement of Ramda’s anyPass ([#327](https://github.com/char0n/ramda-adjunct/issues/327)) ([6b875ea](https://github.com/char0n/ramda-adjunct/commit/6b875ea017133022c0aa0d07ffd8058f031874fe)), closes [#234](https://github.com/char0n/ramda-adjunct/issues/234)
550
+
551
+
552
+
553
+ ## [2.4.1](https://github.com/char0n/ramda-adjunct/compare/v2.4.0...v2.4.1) (2018-01-25)
554
+
555
+
556
+
557
+ # [2.4.0](https://github.com/char0n/ramda-adjunct/compare/v2.3.0...v2.4.0) (2018-01-24)
558
+
559
+
560
+ ### Features
561
+
562
+ * add isEmptyArray ([#288](https://github.com/char0n/ramda-adjunct/issues/288)) ([961692e](https://github.com/char0n/ramda-adjunct/commit/961692e45c232b05eb6928196dca3ce211d2853d)), closes [#279](https://github.com/char0n/ramda-adjunct/issues/279)
563
+ * add isEmptyString ([08d80e9](https://github.com/char0n/ramda-adjunct/commit/08d80e98b78e4d2de8c120647dffc8a087780ab7)), closes [#40](https://github.com/char0n/ramda-adjunct/issues/40)
564
+ * add isNonEmptyArray ([#289](https://github.com/char0n/ramda-adjunct/issues/289)) ([464060e](https://github.com/char0n/ramda-adjunct/commit/464060e125a4b3fecd80e677f51725bf6104ee67)), closes [#279](https://github.com/char0n/ramda-adjunct/issues/279)
565
+ * add isNonEmptyString ([#299](https://github.com/char0n/ramda-adjunct/issues/299)) ([cd94a5f](https://github.com/char0n/ramda-adjunct/commit/cd94a5ff02fa9ad9a7a71392bd0a953d47520cf6)), closes [#40](https://github.com/char0n/ramda-adjunct/issues/40)
566
+ * add notAllPass ([#308](https://github.com/char0n/ramda-adjunct/issues/308)) ([2aa3d2f](https://github.com/char0n/ramda-adjunct/commit/2aa3d2f5a130234d506a0b5967598d7a41a3b935)), closes [#234](https://github.com/char0n/ramda-adjunct/issues/234)
567
+ * add pathNotEq ([#297](https://github.com/char0n/ramda-adjunct/issues/297)) ([fc0716f](https://github.com/char0n/ramda-adjunct/commit/fc0716f5912b8df4a554add99ecb9aa0fd268f30)), closes [#217](https://github.com/char0n/ramda-adjunct/issues/217)
568
+
569
+
570
+
571
+ # [2.3.0](https://github.com/char0n/ramda-adjunct/compare/v2.2.0...v2.3.0) (2018-01-14)
572
+
573
+
574
+ ### Features
575
+
576
+ * add allP ([#269](https://github.com/char0n/ramda-adjunct/issues/269)) ([c430af6](https://github.com/char0n/ramda-adjunct/commit/c430af6208f5907a9731f5d2728535171329ceec)), closes [#35](https://github.com/char0n/ramda-adjunct/issues/35)
577
+ * add neither ([#273](https://github.com/char0n/ramda-adjunct/issues/273)) ([5294011](https://github.com/char0n/ramda-adjunct/commit/529401130e486abd03d3de8160f25531ea2002b1)), closes [#234](https://github.com/char0n/ramda-adjunct/issues/234)
578
+ * add propNotEq ([#275](https://github.com/char0n/ramda-adjunct/issues/275)) ([82da044](https://github.com/char0n/ramda-adjunct/commit/82da04407b793822bca504d3570ac5a30b45c30e)), closes [#238](https://github.com/char0n/ramda-adjunct/issues/238)
579
+ * add sequencing combinator ([#257](https://github.com/char0n/ramda-adjunct/issues/257)) ([04ffd3d](https://github.com/char0n/ramda-adjunct/commit/04ffd3d681b458fc141a2df3d664049fa581a152)), closes [#173](https://github.com/char0n/ramda-adjunct/issues/173)
580
+ * add Y combinator ([dbdf6af](https://github.com/char0n/ramda-adjunct/commit/dbdf6afa27fe2f706b30fabb48807b5064ee3fba)), closes [#130](https://github.com/char0n/ramda-adjunct/issues/130)
581
+ * **api:** add notBoth ([#260](https://github.com/char0n/ramda-adjunct/issues/260)) ([a214f75](https://github.com/char0n/ramda-adjunct/commit/a214f7583c6328ad210623d8c060951e5bfe6c03)), closes [#234](https://github.com/char0n/ramda-adjunct/issues/234)
582
+
583
+
584
+
585
+ # [2.2.0](https://github.com/char0n/ramda-adjunct/compare/v2.1.0...v2.2.0) (2017-12-24)
586
+
587
+
588
+ ### Features
589
+
590
+ * add defaultWhen ([#245](https://github.com/char0n/ramda-adjunct/issues/245)) ([3606048](https://github.com/char0n/ramda-adjunct/commit/36060481f0d821d858f36e107f7037d34ab062c8)), closes [#216](https://github.com/char0n/ramda-adjunct/issues/216)
591
+ * add is Thenable ([b9f6e0d](https://github.com/char0n/ramda-adjunct/commit/b9f6e0d71bc46d17ff1ed4d8a906805817328a7d)), closes [#35](https://github.com/char0n/ramda-adjunct/issues/35)
592
+ * add isFalsy ([1612941](https://github.com/char0n/ramda-adjunct/commit/16129416ae10ed54a15ad4ad27308adb409afa1d)), closes [#66](https://github.com/char0n/ramda-adjunct/issues/66)
593
+ * add isPromise ([f00e93f](https://github.com/char0n/ramda-adjunct/commit/f00e93fac29326fffc178d97f2195ef064a2c4e6)), closes [#35](https://github.com/char0n/ramda-adjunct/issues/35)
594
+ * add isTruthy ([f09f72e](https://github.com/char0n/ramda-adjunct/commit/f09f72eaa105c1de5c1ca2207c0f3262193f6e88)), closes [#66](https://github.com/char0n/ramda-adjunct/issues/66)
595
+ * add isValidNumber, isNotValidNumber ([#247](https://github.com/char0n/ramda-adjunct/issues/247)) ([d94c1b5](https://github.com/char0n/ramda-adjunct/commit/d94c1b59def45be30b4d8b46cc620d5bfe850526)), closes [#235](https://github.com/char0n/ramda-adjunct/issues/235)
596
+
597
+
598
+
599
+ # [2.0.0](https://github.com/char0n/ramda-adjunct/compare/v1.19.0...v2.0.0) (2017-11-19)
600
+
601
+
602
+ ### Features
603
+
604
+ * add support for tree shaking ([baa62ea](https://github.com/char0n/ramda-adjunct/commit/baa62ea258deb95ed85b83cbc2a9c8a1722fbdc8)), closes [#75](https://github.com/char0n/ramda-adjunct/issues/75) [#24](https://github.com/char0n/ramda-adjunct/issues/24)
605
+
606
+
607
+ ### BREAKING CHANGES
608
+
609
+ * Tree shaking support and imports
610
+
611
+ Before:
612
+
613
+ import RA from 'ramda-adjunct'
614
+
615
+ After:
616
+
617
+ import * RA from 'ramda-adjunct'
618
+
619
+
620
+
621
+ # [1.19.0](https://github.com/char0n/ramda-adjunct/compare/v1.18.0...v1.19.0) (2017-10-31)
622
+
623
+
624
+ ### Bug Fixes
625
+
626
+ * **pickIndexes:** omits values for non existing indexes ([cb82b9e](https://github.com/char0n/ramda-adjunct/commit/cb82b9e58a42d856fcbff32d5e44337ba4e7654f)), closes [#181](https://github.com/char0n/ramda-adjunct/issues/181)
627
+ * **typings:** add missed types to concatRight, sliceFrom, sliceTo, liftFN ([96a31cb](https://github.com/char0n/ramda-adjunct/commit/96a31cb465cb7ebed5be6f2d79808d37c5a6e2fe)), closes [#176](https://github.com/char0n/ramda-adjunct/issues/176)
628
+
629
+
630
+ ### Features
631
+
632
+ * add isPair, isNotPair ([#168](https://github.com/char0n/ramda-adjunct/issues/168)) ([6e6e6e5](https://github.com/char0n/ramda-adjunct/commit/6e6e6e5f0e80cdb433456fd99eeb8b3fee1885ce)), closes [#90](https://github.com/char0n/ramda-adjunct/issues/90)
633
+ * add lensIso ([#165](https://github.com/char0n/ramda-adjunct/issues/165)) ([0421890](https://github.com/char0n/ramda-adjunct/commit/04218906dbeedc3a89270b22d02c29f67a27d9b6)), closes [#178](https://github.com/char0n/ramda-adjunct/issues/178)
634
+
635
+
636
+
637
+ # [1.18.0](https://github.com/char0n/ramda-adjunct/compare/v1.17.0...v1.18.0) (2017-10-15)
638
+
639
+
640
+ ### Features
641
+
642
+ * add isEven ([aff8308](https://github.com/char0n/ramda-adjunct/commit/aff8308941d68fad13f8aa31b546128aa8b0a464)), closes [#98](https://github.com/char0n/ramda-adjunct/issues/98)
643
+ * add isOdd ([7d7cfcd](https://github.com/char0n/ramda-adjunct/commit/7d7cfcd7f7498c507b6dd645a3597c664d503d8d)), closes [#98](https://github.com/char0n/ramda-adjunct/issues/98)
644
+ * add mergePath, mergeProp ([2725289](https://github.com/char0n/ramda-adjunct/commit/2725289492f93b0810e0933b287b98a31ac79067)), closes [#147](https://github.com/char0n/ramda-adjunct/issues/147)
645
+
646
+
647
+
648
+ # [1.17.0](https://github.com/char0n/ramda-adjunct/compare/v1.16.0...v1.17.0) (2017-09-24)
649
+
650
+
651
+ ### Features
652
+
653
+ * add mergePaths ([dd8b681](https://github.com/char0n/ramda-adjunct/commit/dd8b6816ae511782f7799a97ba44584906d5c51d)), closes [#136](https://github.com/char0n/ramda-adjunct/issues/136)
654
+ * add mergeProps ([4c68054](https://github.com/char0n/ramda-adjunct/commit/4c6805483ad9e163f2b6c493089aa30e696ea82b))
655
+
656
+
657
+
658
+ # [1.16.0](https://github.com/char0n/ramda-adjunct/compare/v1.15.0...v1.16.0) (2017-09-19)
659
+
660
+
661
+ ### Features
662
+
663
+ * add rejectP ([02451f3](https://github.com/char0n/ramda-adjunct/commit/02451f3ee1f883bae587fb14891c8de89c9c865d)), closes [#35](https://github.com/char0n/ramda-adjunct/issues/35)
664
+ * add resolveP ([9d057b1](https://github.com/char0n/ramda-adjunct/commit/9d057b1198583e21b4d435f9b039f09997a085d8)), closes [#35](https://github.com/char0n/ramda-adjunct/issues/35)
665
+ * add sliceFrom ([db3a1d2](https://github.com/char0n/ramda-adjunct/commit/db3a1d2a01a6457098840cfff0cb0153709c0bec))
666
+ * add sliceTo ([4408418](https://github.com/char0n/ramda-adjunct/commit/4408418f803e4a4f6a0a35de7966514bf278e574))
667
+
668
+
669
+
670
+ # [1.15.0](https://github.com/char0n/ramda-adjunct/compare/v1.14.0...v1.15.0) (2017-09-10)
671
+
672
+
673
+ ### Features
674
+
675
+ * add isNegative ([e593104](https://github.com/char0n/ramda-adjunct/commit/e593104a24269f395c78e175d2b5bfec4c12fceb)), closes [#98](https://github.com/char0n/ramda-adjunct/issues/98)
676
+ * add isPositive ([040d335](https://github.com/char0n/ramda-adjunct/commit/040d3355e938cc0b6322adbef5f670374b438729)), closes [#98](https://github.com/char0n/ramda-adjunct/issues/98)
677
+
678
+
679
+
680
+ # [1.14.0](https://github.com/char0n/ramda-adjunct/compare/v1.13.0...v1.14.0) (2017-08-25)
681
+
682
+
683
+ ### Bug Fixes
684
+
685
+ * **reduceP, reduceRightP:** fix logic for empty list ([6538444](https://github.com/char0n/ramda-adjunct/commit/65384442fe4f4a29b15a00a781ac46197db56cbc))
686
+
687
+
688
+ ### Features
689
+
690
+ * add hasPath ([06c7364](https://github.com/char0n/ramda-adjunct/commit/06c7364d48c12f12f3c4f0fcfcadf5561f05bf0c)), closes [#125](https://github.com/char0n/ramda-adjunct/issues/125)
691
+ * add isFloat ([40d74e6](https://github.com/char0n/ramda-adjunct/commit/40d74e6a2f1e11769e065ad012a4150989e458d8)), closes [#98](https://github.com/char0n/ramda-adjunct/issues/98)
692
+ * add isNotFloat ([652d317](https://github.com/char0n/ramda-adjunct/commit/652d317029c979ecbe6eacf85daa25a6f423145e)), closes [#98](https://github.com/char0n/ramda-adjunct/issues/98)
693
+ * **Identity:** add contravariant fantasy-land specification ([1bd5beb](https://github.com/char0n/ramda-adjunct/commit/1bd5beb8a72e62417bbe2128603e9dba7f4f50cb))
694
+
695
+
696
+
697
+ # [1.13.0](https://github.com/char0n/ramda-adjunct/compare/v1.12.0...v1.13.0) (2017-08-15)
698
+
699
+
700
+ ### Bug Fixes
701
+
702
+ * **defaults:** fix wrong logic ([fbc373f](https://github.com/char0n/ramda-adjunct/commit/fbc373f3bb6e9f202eb6f595ad299d03ba770838)), closes [#118](https://github.com/char0n/ramda-adjunct/issues/118)
703
+ * **docs:** fix version in JSDOC ([4696ae2](https://github.com/char0n/ramda-adjunct/commit/4696ae25e3cc3c11347252f138840defe7095058))
704
+ * **reduceRightP:** compensate for older versions of ramda ([3e5b327](https://github.com/char0n/ramda-adjunct/commit/3e5b3272eb374d20ecde4968d0842801d3d97b99)), closes [#114](https://github.com/char0n/ramda-adjunct/issues/114)
705
+
706
+
707
+ ### Features
708
+
709
+ * add reduceP ([d721126](https://github.com/char0n/ramda-adjunct/commit/d721126c6b9d53fc0f5ac65eaa98788ceedf5186)), closes [#114](https://github.com/char0n/ramda-adjunct/issues/114)
710
+ * add reduceRightP ([81d3d09](https://github.com/char0n/ramda-adjunct/commit/81d3d090284bbfaa97387620c1e47c561b2f470e)), closes [#114](https://github.com/char0n/ramda-adjunct/issues/114)
711
+ * **lensEq:** Van Laarhoven lenses extension ([7dd4b20](https://github.com/char0n/ramda-adjunct/commit/7dd4b200adc425bfd1f3a16581131e4270d08e0e))
712
+ * **lens:** lensSatisfies & complement ([1c351c2](https://github.com/char0n/ramda-adjunct/commit/1c351c29b4bd9f31692b9cc6a2b5ffbba7708e07))
713
+ * **lens:** viewOr implemented ([f494dc1](https://github.com/char0n/ramda-adjunct/commit/f494dc144dfdf3aa55580777137681d877744e2e))
714
+
715
+
716
+
717
+ # [1.12.0](https://github.com/char0n/ramda-adjunct/compare/v1.11.0...v1.12.0) (2017-07-30)
718
+
719
+
720
+ ### Features
721
+
722
+ * add curryRight ([0988114](https://github.com/char0n/ramda-adjunct/commit/0988114d023f7b357f1e54354fb07d8b5a58f9f8)), closes [#105](https://github.com/char0n/ramda-adjunct/issues/105)
723
+ * add curryRightN ([c8c9dd5](https://github.com/char0n/ramda-adjunct/commit/c8c9dd5ecf179cb2b1424de686d6b241a042545f)), closes [#105](https://github.com/char0n/ramda-adjunct/issues/105)
724
+
725
+
726
+
727
+ # [1.11.0](https://github.com/char0n/ramda-adjunct/compare/v1.10.2...v1.11.0) (2017-07-23)
728
+
729
+
730
+ ### Features
731
+
732
+ * add concatRight ([7628612](https://github.com/char0n/ramda-adjunct/commit/7628612a352b8c02669f09e657825dc867c98b79)), closes [#93](https://github.com/char0n/ramda-adjunct/issues/93)
733
+ * **Identity:** add Ord fantasy-land spec ([76d94d7](https://github.com/char0n/ramda-adjunct/commit/76d94d791726d4b6f2afaa42306eeaa9ebb88691))
734
+ * **Identity:** add partial Monoid* specification ([da1f379](https://github.com/char0n/ramda-adjunct/commit/da1f379a6481b11ec49bc3c0d2393cb82d0cf83a))
735
+
736
+
737
+
738
+ ## [1.10.2](https://github.com/char0n/ramda-adjunct/compare/v1.10.1...v1.10.2) (2017-06-20)
739
+
740
+
741
+
742
+ ## [1.10.1](https://github.com/char0n/ramda-adjunct/compare/v1.10.0...v1.10.1) (2017-06-20)
743
+
744
+
745
+
746
+ # [1.10.0](https://github.com/char0n/ramda-adjunct/compare/v1.9.0...v1.10.0) (2017-06-20)
747
+
748
+
749
+ ### Features
750
+
751
+ * add weaveLazy ([8b665d3](https://github.com/char0n/ramda-adjunct/commit/8b665d3821fc083ac08a12ab844c20bb0b78de2a))
752
+
753
+
754
+
755
+ # [1.9.0](https://github.com/char0n/ramda-adjunct/compare/v1.8.1...v1.9.0) (2017-06-14)
756
+
757
+
758
+ ### Features
759
+
760
+ * add isArrayLike ([3062a89](https://github.com/char0n/ramda-adjunct/commit/3062a898ad6851610188ed060c1e75b48c9b7ce9)), closes [#86](https://github.com/char0n/ramda-adjunct/issues/86)
761
+
762
+
763
+ ### Reverts
764
+
765
+ * ci: run tests under node 8.x.y ([469c0ed](https://github.com/char0n/ramda-adjunct/commit/469c0edbc8cd67d528e2619597a4a0ca38bded48))
766
+ * ci: test enabling babel compiling also node_modules ([91c27f6](https://github.com/char0n/ramda-adjunct/commit/91c27f6f0f16a2ed669bd5b7186555fd4c90130d))
767
+
768
+
769
+
770
+ ## [1.8.1](https://github.com/char0n/ramda-adjunct/compare/v1.8.0...v1.8.1) (2017-05-23)
771
+
772
+
773
+
774
+ # [1.8.0](https://github.com/char0n/ramda-adjunct/compare/v1.7.0...v1.8.0) (2017-05-22)
775
+
776
+
777
+ ### Features
778
+
779
+ * add isValidDate ([3a2f4ad](https://github.com/char0n/ramda-adjunct/commit/3a2f4adce5adc4deea767baf7dd4726c31eb36e1)), closes [#46](https://github.com/char0n/ramda-adjunct/issues/46)
780
+ * **Identity:** add Identity monadic type to public API ([5130a73](https://github.com/char0n/ramda-adjunct/commit/5130a7391384fc3c596ea68fb816aaf8615bba76))
781
+ * isNotValidDate ([10d3780](https://github.com/char0n/ramda-adjunct/commit/10d378025faf9531aae900e7c18ea9723ff6f56e)), closes [#46](https://github.com/char0n/ramda-adjunct/issues/46)
782
+ * **weave:** add support for auto-currying returned function ([7fcf7a9](https://github.com/char0n/ramda-adjunct/commit/7fcf7a985ef27e4d5600e0d140cad90c9456c9de)), closes [#78](https://github.com/char0n/ramda-adjunct/issues/78)
783
+
784
+
785
+
786
+ # [1.7.0](https://github.com/char0n/ramda-adjunct/compare/v1.6.0...v1.7.0) (2017-05-18)
787
+
788
+
789
+ ### Bug Fixes
790
+
791
+ * **package.json:** point browser field to es/index.js ([aaa018e](https://github.com/char0n/ramda-adjunct/commit/aaa018e2ad103ceedb2845875035d989791dc843)), closes [#76](https://github.com/char0n/ramda-adjunct/issues/76)
792
+
793
+
794
+ ### Features
795
+
796
+ * add weave ([118daf9](https://github.com/char0n/ramda-adjunct/commit/118daf950e1eb5cb023bd1ff0bbe804c087acdd4)), closes [#65](https://github.com/char0n/ramda-adjunct/issues/65)
797
+
798
+
799
+
800
+ # [1.6.0](https://github.com/char0n/ramda-adjunct/compare/v1.5.0...v1.6.0) (2017-05-16)
801
+
802
+
803
+ ### Features
804
+
805
+ * add mergeRight ([25051aa](https://github.com/char0n/ramda-adjunct/commit/25051aa1b49cbc065021277633c9151b6e79f791)), closes [#70](https://github.com/char0n/ramda-adjunct/issues/70)
806
+ * add stubNull ([7c71292](https://github.com/char0n/ramda-adjunct/commit/7c7129226df242fcdc9566dd2141f6590c4575bb)), closes [#71](https://github.com/char0n/ramda-adjunct/issues/71)
807
+ * **Identity:** add Setoid spec to Identity ([3c62ad6](https://github.com/char0n/ramda-adjunct/commit/3c62ad6020f337b14f199d4ec0ae635ea32faabe))
808
+
809
+
810
+
811
+ # [1.5.0](https://github.com/char0n/ramda-adjunct/compare/v1.4.0...v1.5.0) (2017-05-10)
812
+
813
+
814
+ ### Features
815
+
816
+ * add renameKeys ([1a2538e](https://github.com/char0n/ramda-adjunct/commit/1a2538e42c5245aec759f467a33a1d915076d38d)), closes [#27](https://github.com/char0n/ramda-adjunct/issues/27)
817
+ * add renameKeysWith ([fb5059c](https://github.com/char0n/ramda-adjunct/commit/fb5059c60c45c26554b8b4111e7aaf0a3f4f6c3e)), closes [#27](https://github.com/char0n/ramda-adjunct/issues/27)
818
+ * expose ap as internal util ([16e2535](https://github.com/char0n/ramda-adjunct/commit/16e2535fee16117c7e0e8c98aa79057f14662270)), closes [#64](https://github.com/char0n/ramda-adjunct/issues/64)
819
+
820
+
821
+
822
+ # [1.4.0](https://github.com/char0n/ramda-adjunct/compare/v1.3.2...v1.4.0) (2017-04-28)
823
+
824
+
825
+ ### Bug Fixes
826
+
827
+ * **isGeneratorFunction:** check for GeneratorFunction instead of AsyncFunction ([853f934](https://github.com/char0n/ramda-adjunct/commit/853f934e28b533d890aae12a8c94865e095758a5))
828
+
829
+
830
+ ### Features
831
+
832
+ * add cata ([1c6fdc6](https://github.com/char0n/ramda-adjunct/commit/1c6fdc63abc28813cd0be37839ce38793b2554dd)), closes [#58](https://github.com/char0n/ramda-adjunct/issues/58)
833
+ * **Either:** add Either monad with basic capabilities ([ac2c51f](https://github.com/char0n/ramda-adjunct/commit/ac2c51f6bc20e000d8cf6dea36056e484e38847d))
834
+
835
+
836
+
837
+ ## [1.3.2](https://github.com/char0n/ramda-adjunct/compare/v1.3.1...v1.3.2) (2017-04-23)
838
+
839
+
840
+ ### Bug Fixes
841
+
842
+ * **liftFN:** fix multiple bugs and resolve ramda complatibility issue ([47bc23f](https://github.com/char0n/ramda-adjunct/commit/47bc23f65814a552ae41807563c28447d7e2ea2f)), closes [#59](https://github.com/char0n/ramda-adjunct/issues/59)
843
+
844
+
845
+
846
+ ## [1.3.1](https://github.com/char0n/ramda-adjunct/compare/v1.3.0...v1.3.1) (2017-04-20)
847
+
848
+
849
+
850
+ # [1.3.0](https://github.com/char0n/ramda-adjunct/compare/v1.2.0...v1.3.0) (2017-04-20)
851
+
852
+
853
+
854
+ # [1.2.0](https://github.com/char0n/ramda-adjunct/compare/v1.1.0...v1.2.0) (2017-04-16)
855
+
856
+
857
+ ### Features
858
+
859
+ * add defaults alias to merge ([9a3aa17](https://github.com/char0n/ramda-adjunct/commit/9a3aa170f1f441a11ef3049fed4272073d824426)), closes [#27](https://github.com/char0n/ramda-adjunct/issues/27)
860
+ * add liftF ([b475d5d](https://github.com/char0n/ramda-adjunct/commit/b475d5ddd4e8b7ddb046e38aa48003cd93ca9b5f)), closes [#56](https://github.com/char0n/ramda-adjunct/issues/56)
861
+ * add liftFN ([f65a52e](https://github.com/char0n/ramda-adjunct/commit/f65a52e45ebc3e25a930e294fe655357ba5d775d)), closes [#56](https://github.com/char0n/ramda-adjunct/issues/56)
862
+ * add paths ([c409d6b](https://github.com/char0n/ramda-adjunct/commit/c409d6b6345888decdfde8592c68d3b927905397)), closes [#27](https://github.com/char0n/ramda-adjunct/issues/27) [#54](https://github.com/char0n/ramda-adjunct/issues/54)
863
+ * add resetToDefault ([d5202fb](https://github.com/char0n/ramda-adjunct/commit/d5202fbdf0b23e20c85dd1d80ece368fcf6e4c3e)), closes [#27](https://github.com/char0n/ramda-adjunct/issues/27)
864
+
865
+
866
+
867
+ # [1.1.0](https://github.com/char0n/ramda-adjunct/compare/v1.0.0...v1.1.0) (2017-04-09)
868
+
869
+
870
+ ### Features
871
+
872
+ * add list ([30506b1](https://github.com/char0n/ramda-adjunct/commit/30506b18663337193eaaa626ab019a04534d3a41)), closes [#27](https://github.com/char0n/ramda-adjunct/issues/27)
873
+ * add pickIndexes ([17cc387](https://github.com/char0n/ramda-adjunct/commit/17cc3878cf2649c5d98bd04453d3a5f443eb8bec)), closes [#27](https://github.com/char0n/ramda-adjunct/issues/27)
874
+
875
+
876
+
877
+ # [1.0.0](https://github.com/char0n/ramda-adjunct/compare/v0.7.0...v1.0.0) (2017-04-02)
878
+
879
+
880
+ ### Features
881
+
882
+ * add noop ([38877c5](https://github.com/char0n/ramda-adjunct/commit/38877c56846363458af0aa0d05ae0b1424865849)), closes [#36](https://github.com/char0n/ramda-adjunct/issues/36)
883
+ * add stubUndefined ([7e47e45](https://github.com/char0n/ramda-adjunct/commit/7e47e454cd42c3a8fd76e59c48ba06b1526022d4)), closes [#49](https://github.com/char0n/ramda-adjunct/issues/49)
884
+ * use es2015 imports ([8e86019](https://github.com/char0n/ramda-adjunct/commit/8e860191d40c9f1f00b48b589d896fadc4420f85)), closes [#45](https://github.com/char0n/ramda-adjunct/issues/45)
885
+
886
+
887
+
888
+ # [0.7.0](https://github.com/char0n/ramda-adjunct/compare/v0.6.0...v0.7.0) (2017-03-26)
889
+
890
+
891
+ ### Features
892
+
893
+ * add isNotInteger ([494094d](https://github.com/char0n/ramda-adjunct/commit/494094d7c935d4302a9de97e2869b2e1f6963c62)), closes [#10](https://github.com/char0n/ramda-adjunct/issues/10)
894
+ * isFinite ([f3ed894](https://github.com/char0n/ramda-adjunct/commit/f3ed8941cc4b53aa6a70e7e13860b3d87eff7dd7)), closes [#10](https://github.com/char0n/ramda-adjunct/issues/10)
895
+ * isInteger ([466db58](https://github.com/char0n/ramda-adjunct/commit/466db58cd63679ec744f233fc8eea84743ff4a3a)), closes [#10](https://github.com/char0n/ramda-adjunct/issues/10)
896
+ * isNotFinite ([1edbebc](https://github.com/char0n/ramda-adjunct/commit/1edbebc5fcfd5525cf588d59471b705cf229a278)), closes [#10](https://github.com/char0n/ramda-adjunct/issues/10)
897
+
898
+
899
+
900
+ # [0.6.0](https://github.com/char0n/ramda-adjunct/compare/v0.5.1...v0.6.0) (2017-03-16)
901
+
902
+
903
+ ### Features
904
+
905
+ * add isDate ([5fbd348](https://github.com/char0n/ramda-adjunct/commit/5fbd34895c86cfde46f3dbc1f21e82475ee2b089)), closes [#10](https://github.com/char0n/ramda-adjunct/issues/10)
906
+ * add isNaN ([3111de3](https://github.com/char0n/ramda-adjunct/commit/3111de3467a0acf0227e6a25eb5dd0cf0cc794bb)), closes [#10](https://github.com/char0n/ramda-adjunct/issues/10)
907
+ * add isNotDate ([4ffa958](https://github.com/char0n/ramda-adjunct/commit/4ffa9580e55f0ad8f964e9ef3438cbaf22f0328e)), closes [#10](https://github.com/char0n/ramda-adjunct/issues/10)
908
+ * add isNotNaN ([fdc83c1](https://github.com/char0n/ramda-adjunct/commit/fdc83c134e91c655a8b74afb8708a4ec2267c58d)), closes [#10](https://github.com/char0n/ramda-adjunct/issues/10)
909
+ * add isNotNumber ([a3a0758](https://github.com/char0n/ramda-adjunct/commit/a3a0758271127528e2d4c2dbc8b43d7cb73cc8f0)), closes [#10](https://github.com/char0n/ramda-adjunct/issues/10)
910
+ * as isNumber ([d76d5fd](https://github.com/char0n/ramda-adjunct/commit/d76d5fd760e82881970671f8b41b59b196d114e8)), closes [#10](https://github.com/char0n/ramda-adjunct/issues/10)
911
+
912
+
913
+
914
+ ## [0.5.1](https://github.com/char0n/ramda-adjunct/compare/v0.5.0...v0.5.1) (2017-03-06)
915
+
916
+
917
+
918
+ # [0.5.0](https://github.com/char0n/ramda-adjunct/compare/v0.4.0...v0.5.0) (2017-03-06)
919
+
920
+
921
+ ### Bug Fixes
922
+
923
+ * **isGeneratorFunction:** add legacy check ([24969a6](https://github.com/char0n/ramda-adjunct/commit/24969a64d475b2c93e3bdccfeab76e212de58464)), closes [#31](https://github.com/char0n/ramda-adjunct/issues/31)
924
+
925
+
926
+ ### Features
927
+
928
+ * add isAsyncFunction ([b72a040](https://github.com/char0n/ramda-adjunct/commit/b72a04074e94af5e1a5a1f82a4640cb3b8c60446)), closes [#33](https://github.com/char0n/ramda-adjunct/issues/33)
929
+ * add isFunction ([c0e45e7](https://github.com/char0n/ramda-adjunct/commit/c0e45e7fc2511cf6dee0aebbca68f1e621d59a01)), closes [#31](https://github.com/char0n/ramda-adjunct/issues/31)
930
+ * add isGeneratorFunction ([08ee74b](https://github.com/char0n/ramda-adjunct/commit/08ee74bc69776f8c8f5e4657e2d81e1ab77173d0)), closes [#31](https://github.com/char0n/ramda-adjunct/issues/31)
931
+ * add isNotArrayLike ([dbf09b9](https://github.com/char0n/ramda-adjunct/commit/dbf09b9fe7359dba2b1da7b54dbc757d2e11555c)), closes [#33](https://github.com/char0n/ramda-adjunct/issues/33)
932
+ * add isNotAsyncFunction ([8194de9](https://github.com/char0n/ramda-adjunct/commit/8194de9b385a53939860b46f50281169f907c65f)), closes [#33](https://github.com/char0n/ramda-adjunct/issues/33)
933
+ * add isNotFunction ([82b8295](https://github.com/char0n/ramda-adjunct/commit/82b8295a2e5f0ca7c1bdb3fb87afec2fb3434c99)), closes [#31](https://github.com/char0n/ramda-adjunct/issues/31)
934
+ * add isNotObjectLike ([9233e00](https://github.com/char0n/ramda-adjunct/commit/9233e002ea179165c4e72111305e2dc692d8854a)), closes [#10](https://github.com/char0n/ramda-adjunct/issues/10)
935
+ * add isNotPlainObject ([1d39f44](https://github.com/char0n/ramda-adjunct/commit/1d39f44116759a482b90992007ffeaaf2f93d1e8)), closes [#10](https://github.com/char0n/ramda-adjunct/issues/10)
936
+ * add isObject ([9f6e64a](https://github.com/char0n/ramda-adjunct/commit/9f6e64a35e5f0b481cd5dca60483326f776e3ebc)), closes [#10](https://github.com/char0n/ramda-adjunct/issues/10)
937
+ * add isObjectLike ([52b1917](https://github.com/char0n/ramda-adjunct/commit/52b1917b5ef33ff4f38019f8d51eab17392e39c9)), closes [#10](https://github.com/char0n/ramda-adjunct/issues/10)
938
+ * add isPlainObject ([6e14291](https://github.com/char0n/ramda-adjunct/commit/6e14291613924a116da2220a2bfc4307b5b9be87)), closes [#10](https://github.com/char0n/ramda-adjunct/issues/10)
939
+ * isNotGeneratorFunction ([ffba8cd](https://github.com/char0n/ramda-adjunct/commit/ffba8cd305c6797a91a2e4beeafd077ad4e51b74)), closes [#33](https://github.com/char0n/ramda-adjunct/issues/33)
940
+ * isNotObject ([aa4a0df](https://github.com/char0n/ramda-adjunct/commit/aa4a0dfa8582c8415b435c7a6a2ff26984a88c10)), closes [#10](https://github.com/char0n/ramda-adjunct/issues/10)
941
+ * **typescript:** add support for typescript by typings ([1ff7c61](https://github.com/char0n/ramda-adjunct/commit/1ff7c613118672eb08cd674bad568ad3454c1b1b)), closes [#30](https://github.com/char0n/ramda-adjunct/issues/30)
942
+
943
+
944
+
945
+ # [0.4.0](https://github.com/char0n/ramda-adjunct/compare/v0.3.0...v0.4.0) (2017-02-27)
946
+
947
+
948
+ ### Bug Fixes
949
+
950
+ * fix import of isNilOrEmpty ([7de3f33](https://github.com/char0n/ramda-adjunct/commit/7de3f33dafd95fce207fd8e3abf8f977750ef27e))
951
+
952
+
953
+ ### Features
954
+
955
+ * add isNilOrEmpty ([a42d429](https://github.com/char0n/ramda-adjunct/commit/a42d429cc3622a70f7cd8e979158f70106df2a69)), closes [#21](https://github.com/char0n/ramda-adjunct/issues/21)
956
+ * add isNotEmpty ([791f81b](https://github.com/char0n/ramda-adjunct/commit/791f81bedf714d8fb800516216c0769f73e93f28)), closes [#19](https://github.com/char0n/ramda-adjunct/issues/19)
957
+ * add isString, isNotString ([15a4deb](https://github.com/char0n/ramda-adjunct/commit/15a4deb78b5add4202ebc817ecaee5e8265336fb))
958
+
959
+
960
+
961
+ # [0.3.0](https://github.com/char0n/ramda-adjunct/compare/v0.2.0...v0.3.0) (2017-02-16)
962
+
963
+
964
+ ### Features
965
+
966
+ * add isArray ([5bf4ab9](https://github.com/char0n/ramda-adjunct/commit/5bf4ab93dffe96c8eb704fb8f2310657abddb399))
967
+ * add isBoolean, isNotBoolean ([5400527](https://github.com/char0n/ramda-adjunct/commit/54005279d3e1a115c829a9d70bbd341e11ef3e30))
968
+ * add isNotArray ([17d11c2](https://github.com/char0n/ramda-adjunct/commit/17d11c2734ced6964a7c7696b0fc316e26e1fa6b))
969
+ * add isNotNil ([f49962a](https://github.com/char0n/ramda-adjunct/commit/f49962a5169f1a0ed8a289078464af6398c1e7e7))
970
+
971
+
972
+
973
+ # [0.2.0](https://github.com/char0n/ramda-adjunct/compare/v0.1.0...v0.2.0) (2017-02-13)
974
+
975
+
976
+
977
+ # [0.1.0](https://github.com/char0n/ramda-adjunct/compare/v0.0.1...v0.1.0) (2017-02-09)
978
+
979
+
980
+ ### Features
981
+
982
+ * **isNull:** add isNull along side with complement isNotNull ([c803052](https://github.com/char0n/ramda-adjunct/commit/c80305291437549742b7bd5cfb2d712bda5c0b24))
983
+
984
+
985
+
986
+ ## [0.0.1](https://github.com/char0n/ramda-adjunct/compare/b468c1245604601e4a3e8df5e0e1a6f57f9f5c2e...v0.0.1) (2017-02-09)
987
+
988
+
989
+ ### Features
990
+
991
+ * **isNotUndefined:** add isNotUndefined adjunct ([b468c12](https://github.com/char0n/ramda-adjunct/commit/b468c1245604601e4a3e8df5e0e1a6f57f9f5c2e))
992
+ * **isUndefined:** add isUndefined adjunct ([2d1f85b](https://github.com/char0n/ramda-adjunct/commit/2d1f85b8752e207ba6160209963a705133f0816f))
993
+
994
+
995
+
1
996
  # [4.1.0](https://github.com/char0n/ramda-adjunct/compare/v4.0.0...v4.1.0) (2023-08-18)
2
997
 
3
998