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.
- package/.nvmrc +1 -0
- package/CHANGELOG.md +10 -0
- package/README.md +3 -3
- package/dist/RA.node.js +232 -129
- package/dist/RA.node.min.js +1 -1
- package/dist/RA.web.js +232 -129
- package/dist/RA.web.min.js +1 -1
- package/dist/RA.web.standalone.js +232 -129
- package/dist/RA.web.standalone.min.js +1 -1
- package/es/catchP.js +24 -0
- package/es/dispatch.js +1 -1
- package/es/fantasy-land/Identity.js +61 -74
- package/es/fantasy-land/mapping.js +20 -23
- package/es/fantasy-land/traits.js +1 -1
- package/es/flattenDepth.js +1 -1
- package/es/index.js +3 -1
- package/es/internal/ap.js +1 -1
- package/es/internal/ponyfills/Array.from.js +1 -1
- package/es/internal/ponyfills/Promise.allSettled.js +1 -1
- package/es/internal/ponyfills/Promise.any.js +1 -1
- package/es/isSentinelValue.js +26 -0
- package/es/lastP.js +1 -1
- package/es/reduceP.js +1 -1
- package/es/reduceRightP.js +1 -1
- package/es/sortByProps.js +1 -1
- package/lib/anyP.js +2 -2
- package/lib/catchP.js +30 -0
- package/lib/dispatch.js +1 -1
- package/lib/fantasy-land/Identity.js +65 -75
- package/lib/fantasy-land/mapping.js +41 -25
- package/lib/fantasy-land/traits.js +18 -12
- package/lib/flattenDepth.js +1 -1
- package/lib/index.js +11 -3
- package/lib/internal/ap.js +9 -3
- package/lib/internal/ponyfills/Array.from.js +1 -1
- package/lib/internal/ponyfills/Promise.allSettled.js +1 -1
- package/lib/internal/ponyfills/Promise.any.js +1 -1
- package/lib/isSentinelValue.js +35 -0
- package/lib/lastP.js +1 -1
- package/lib/reduceP.js +1 -1
- package/lib/reduceRightP.js +1 -1
- package/lib/sortByProps.js +1 -1
- package/package.json +24 -25
- package/src/catchP.js +25 -0
- package/src/fantasy-land/Identity.js +24 -27
- package/src/fantasy-land/mapping.js +20 -24
- package/src/fantasy-land/traits.js +1 -1
- package/src/index.js +2 -0
- package/src/internal/ap.js +1 -1
- package/src/internal/ponyfills/Promise.allSettled.js +4 -3
- package/src/isSentinelValue.js +26 -0
- 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
|
-
|
|
1
|
+

|
|
2
2
|
[](https://codecov.io/gh/char0n/ramda-adjunct)
|
|
3
3
|
[](https://char0n.github.io/ramda-adjunct/)
|
|
4
4
|
[](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.
|
|
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
|
|
234
|
+
You can always find fresh build files in exposed as artifacts of GitHub Actions.
|
|
235
235
|
|
|
236
236
|
|
|
237
237
|
## Tree shaking support
|