rambda 8.2.0 → 8.4.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,37 @@
1
+ 8.4.0
2
+
3
+ - Add `R.dissocPath`
4
+
5
+ - Fix TS definitions of `R.head/R.last` and add missing handle of empty string
6
+
7
+ - Add `R.removeIndex` - method was before only in `Rambdax`, but now since `R.dissocPath` is using it, it is added to main library.
8
+
9
+ - Allow `R.omit` to pass numbers as part of properties to omit, i.e. `R.omit(['a', 1], {a: {1: 1, 2: 2}})`
10
+
11
+ - R.keys always returns strings - [MR #700](https://github.com/selfrefactor/rambda/pull/700)
12
+
13
+ - Improve `R.prepend/R.append` type interference - [MR #699](https://github.com/selfrefactor/rambda/pull/699)
14
+
15
+ - Change `R.reduce` TS definitions so index is always received - [MR #696](https://github.com/selfrefactor/rambda/pull/696)
16
+
17
+ - Functions as a type guard in `R.anyPass` TS definitions - [MR #695](https://github.com/selfrefactor/rambda/pull/695)
18
+
19
+ - Fix R.append's curried type - [MR #694](https://github.com/selfrefactor/rambda/pull/694)
20
+
21
+ - Fix cannot compare errors in `Deno` with `R.equals` - [Issue #704](https://github.com/selfrefactor/rambda/issues/704).
22
+
23
+ - Fix cannot compare `BigInt` with `R.equals`
24
+
25
+ 8.3.0
26
+
27
+ Add the following methods:
28
+
29
+ - binary
30
+ - call
31
+ - collectBy
32
+ - comparator
33
+ - composeWith
34
+
1
35
  8.2.0
2
36
 
3
37
  Add the following methods: