ramda-adjunct 2.32.0 → 2.33.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 (52) hide show
  1. package/.nvmrc +1 -0
  2. package/CHANGELOG.md +10 -0
  3. package/README.md +3 -3
  4. package/dist/RA.node.js +232 -129
  5. package/dist/RA.node.min.js +1 -1
  6. package/dist/RA.web.js +232 -129
  7. package/dist/RA.web.min.js +1 -1
  8. package/dist/RA.web.standalone.js +232 -129
  9. package/dist/RA.web.standalone.min.js +1 -1
  10. package/es/catchP.js +24 -0
  11. package/es/dispatch.js +1 -1
  12. package/es/fantasy-land/Identity.js +61 -74
  13. package/es/fantasy-land/mapping.js +20 -23
  14. package/es/fantasy-land/traits.js +1 -1
  15. package/es/flattenDepth.js +1 -1
  16. package/es/index.js +3 -1
  17. package/es/internal/ap.js +1 -1
  18. package/es/internal/ponyfills/Array.from.js +1 -1
  19. package/es/internal/ponyfills/Promise.allSettled.js +1 -1
  20. package/es/internal/ponyfills/Promise.any.js +1 -1
  21. package/es/isSentinelValue.js +26 -0
  22. package/es/lastP.js +1 -1
  23. package/es/reduceP.js +1 -1
  24. package/es/reduceRightP.js +1 -1
  25. package/es/sortByProps.js +1 -1
  26. package/lib/anyP.js +2 -2
  27. package/lib/catchP.js +30 -0
  28. package/lib/dispatch.js +1 -1
  29. package/lib/fantasy-land/Identity.js +65 -75
  30. package/lib/fantasy-land/mapping.js +41 -25
  31. package/lib/fantasy-land/traits.js +18 -12
  32. package/lib/flattenDepth.js +1 -1
  33. package/lib/index.js +11 -3
  34. package/lib/internal/ap.js +9 -3
  35. package/lib/internal/ponyfills/Array.from.js +1 -1
  36. package/lib/internal/ponyfills/Promise.allSettled.js +1 -1
  37. package/lib/internal/ponyfills/Promise.any.js +1 -1
  38. package/lib/isSentinelValue.js +35 -0
  39. package/lib/lastP.js +1 -1
  40. package/lib/reduceP.js +1 -1
  41. package/lib/reduceRightP.js +1 -1
  42. package/lib/sortByProps.js +1 -1
  43. package/package.json +24 -25
  44. package/src/catchP.js +25 -0
  45. package/src/fantasy-land/Identity.js +24 -27
  46. package/src/fantasy-land/mapping.js +20 -24
  47. package/src/fantasy-land/traits.js +1 -1
  48. package/src/index.js +2 -0
  49. package/src/internal/ap.js +1 -1
  50. package/src/internal/ponyfills/Promise.allSettled.js +4 -3
  51. package/src/isSentinelValue.js +26 -0
  52. package/types/index.d.ts +14 -0
package/.nvmrc ADDED
@@ -0,0 +1 @@
1
+ 16
package/CHANGELOG.md CHANGED
@@ -1,3 +1,13 @@
1
+ # [2.33.0](https://github.com/char0n/ramda-adjunct/compare/v2.32.0...v2.33.0) (2021-05-22)
2
+
3
+
4
+ ### Features
5
+
6
+ * **function:** add catchP ([#1616](https://github.com/char0n/ramda-adjunct/issues/1616)) ([d6d1e78](https://github.com/char0n/ramda-adjunct/commit/d6d1e7825d16130ba916448355f06bad1f2bf0d9)), closes [#1232](https://github.com/char0n/ramda-adjunct/issues/1232)
7
+ * **type:** add isSentinelValue ([#1848](https://github.com/char0n/ramda-adjunct/issues/1848)) ([c48ce9e](https://github.com/char0n/ramda-adjunct/commit/c48ce9e2ab752006c25d385e830f3317bde5110c)), closes [#793](https://github.com/char0n/ramda-adjunct/issues/793)
8
+
9
+
10
+
1
11
  # [2.32.0](https://github.com/char0n/ramda-adjunct/compare/v2.31.1...v2.32.0) (2021-04-10)
2
12
 
3
13
 
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- [![CircleCI](https://circleci.com/gh/char0n/ramda-adjunct.svg?style=svg)](https://circleci.com/gh/char0n/ramda-adjunct)
1
+ ![Node.js workflow](https://github.com/char0n/ramda-adjunct/actions/workflows/nodejs.yaml/badge.svg)
2
2
  [![codecov](https://codecov.io/gh/char0n/ramda-adjunct/branch/master/graph/badge.svg)](https://codecov.io/gh/char0n/ramda-adjunct)
3
3
  [![jsdoc](https://img.shields.io/badge/docs-100%25-green.svg)](https://char0n.github.io/ramda-adjunct/)
4
4
  [![npmversion](https://badge.fury.io/js/ramda-adjunct.svg)](https://www.npmjs.com/package/ramda-adjunct)
@@ -139,7 +139,7 @@ It is also possible that our ES5 distributions run on node versions older than 0
139
139
  ## API Documentation
140
140
 
141
141
  [LATEST](https://char0n.github.io/ramda-adjunct),
142
- [PREVIOUS](https://char0n.github.io/ramda-adjunct/2.31.1),
142
+ [PREVIOUS](https://char0n.github.io/ramda-adjunct/2.32.0),
143
143
  [ALL VERSIONS](./VERSIONS.md)
144
144
 
145
145
  ## Wrote about us
@@ -231,7 +231,7 @@ The command will create three types of bundles.
231
231
 
232
232
  `dist/RA.web.standalone.js` - ES5 compliant bundle, running in browsers. It has `ramda.js` pre-bundled.
233
233
 
234
- You can always find fresh build files in circle-ci [artifacts](https://circleci.com/gh/char0n/ramda-adjunct).
234
+ You can always find fresh build files in exposed as artifacts of GitHub Actions.
235
235
 
236
236
 
237
237
  ## Tree shaking support