rambda 11.0.0 → 11.1.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 CHANGED
@@ -1,3 +1,21 @@
1
+ 11.1.0
2
+
3
+ - Add `R.filterMap` - similar to Ruby `filter_map`
4
+
5
+ - Add `R.mapChain` - when in `R.pipe` there are several `R.map` one after the other, then `R.mapChain` can be used instead.
6
+
7
+ - Add `R.middle` - equal to `R.init` + `R.tail`
8
+
9
+ - Add `R.random`, `R.shuffle`, `R.switcher`, `R.sum`, `R.delay` - imported from `Rambda`
10
+
11
+ - Add index to `R.filter`/`R.reject` predicate signiture
12
+
13
+ - Improve typing of `R.init`, `R.tail`
14
+
15
+ 11.0.1
16
+
17
+ - Add missing JS change for `R.includes` and `R.excludes` methods in `11.0.0` release.
18
+
1
19
  11.0.0
2
20
 
3
21
  - 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`.