rambda 10.3.4 → 11.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.
- package/CHANGELOG.md +24 -0
- package/README.md +654 -260
- package/dist/rambda.cjs +163 -148
- package/dist/rambda.js +159 -148
- package/dist/rambda.umd.js +163 -148
- package/index.d.cts +44 -22
- package/index.d.ts +44 -22
- package/package.json +1 -1
- package/rambda.js +5 -1
- package/src/difference.js +9 -0
- package/src/exists.js +7 -0
- package/src/{innerJoin.js → intersectionWith.js} +1 -1
- package/src/range.js +7 -32
- package/src/rangeDescending.js +8 -0
- package/src/unionWith.js +11 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
11.0.0
|
|
2
|
+
|
|
3
|
+
- Breaking change: `R.includes` and `R.excludes` now accept list as first argument and value to search as second argument. This makes it more useful when used with `R.filter` and `R.reject`.
|
|
4
|
+
|
|
5
|
+
- Rename `R.innerJoin` to `R.intersectionWith`
|
|
6
|
+
|
|
7
|
+
- Add `R.unionWith`
|
|
8
|
+
|
|
9
|
+
- Add `R.exists`
|
|
10
|
+
|
|
11
|
+
- Add `R.symmetricDifference`
|
|
12
|
+
|
|
13
|
+
- Add `R.difference`
|
|
14
|
+
|
|
15
|
+
- `R.range` now works similar to Ruby's `Range` - both start and end values are inclusive.
|
|
16
|
+
|
|
17
|
+
- Add `R.rangeDescending` as now `R.range` works only in ascending order.
|
|
18
|
+
|
|
19
|
+
- `R.range` - it accepts one or two arguments. If one argument is passed, it is considered as end value, and start is 0.
|
|
20
|
+
|
|
21
|
+
- R.rangeDescending - it accepts one or two arguments. If one argument is passed, it is considered as start value, and end is 0.
|
|
22
|
+
|
|
23
|
+
- Fix `R.filter(Boolean)` to handle filter of `false`, not only nullable values.
|
|
24
|
+
|
|
1
25
|
10.3.4
|
|
2
26
|
|
|
3
27
|
- Fix wrong typing for `R.sortByDescending` - [Issue #797](https://github.com/selfrefactor/rambda/issues/797)
|