This repository was archived by the owner on Jan 22, 2023. It is now read-only.
File tree 2 files changed +31
-2
lines changed
2 files changed +31
-2
lines changed Original file line number Diff line number Diff line change
1
+ ## v0.21.0
2
+
3
+ ### Deprecations
4
+ * Removed ` gt ` , use ` > ` inline instead.
5
+ * Removed ` gte ` , use ` >= ` inline instead.
6
+ * Removed ` lt ` , use ` < ` inline instead.
7
+ * Removed ` lte ` , use ` <= ` inline instead.
8
+ * Removed ` flip ` , use arrow functions instead.
9
+ * Removed ` fmap ` .
10
+ * Removed ` of ` .
11
+
12
+ ### Features
13
+ * Added ` difference ` .
14
+ * Added ` interpose ` .
15
+ * Added ` invert ` .
16
+
17
+ ### Fixes
18
+ * ` compose ` now has a correct ` toString ` representation.
19
+ * ` pipe ` now has a correct ` toString ` representation.
20
+
21
+ ### Improvements
22
+ * Miscellaneous TypesScript definition improvements.
23
+ * ` get ` no longer throws when the target is nil, now returns undefined.
24
+ * ` getIn ` no longer throws when the target is nil, now returns undefined.
25
+ * ` rangeBy ` now returns an empty array when start === end.
26
+ * ` compose ` no longer performs runtime type checking.
27
+ * ` pipe ` no longer performs runtime type checking.
28
+ * Eliminated extra toString calls in ` equals ` .
29
+
1
30
## v0.20.1
2
31
3
32
### Improvements
4
- * Improved TypeScript definitions
33
+ * Improved TypeScript definitions.
5
34
6
35
## v0.20.0
7
36
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " redash" ,
3
- "version" : " 0.20.1 " ,
3
+ "version" : " 0.21.0 " ,
4
4
"description" : " A better Standard Library for JavaScript" ,
5
5
"main" : " redash.js" ,
6
6
"module" : " redash.next.js" ,
You can’t perform that action at this time.
0 commit comments