ramda-adjunct 6.0.0 → 6.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 +12 -0
- package/README.md +2 -2
- package/dist/RA.node.js +6258 -6230
- package/dist/RA.node.min.js +1 -1
- package/dist/RA.web.js +6265 -6237
- package/dist/RA.web.min.js +1 -1
- package/dist/RA.web.standalone.js +12805 -12777
- package/dist/RA.web.standalone.min.js +1 -1
- package/es/index.js +1 -0
- package/es/isCoercible.js +31 -0
- package/es/toNumber.js +1 -1
- package/lib/index.js +5 -3
- package/lib/isCoercible.js +35 -0
- package/lib/toNumber.js +1 -1
- package/package.json +22 -22
- package/types/index.d.ts +5 -0
- package/es/internal/isCoercible.js +0 -6
- package/lib/internal/isCoercible.js +0 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# [6.1.0](https://github.com/char0n/ramda-adjunct/compare/v6.0.0...v6.1.0) (2026-06-03)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **docs:** fix broken TideLift image ([#3428](https://github.com/char0n/ramda-adjunct/issues/3428)) ([43efd43](https://github.com/char0n/ramda-adjunct/commit/43efd4345486522197abf890ca63bcefebadf4b1))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **isCoercible:** move isCoercible to public API ([#3429](https://github.com/char0n/ramda-adjunct/issues/3429)) ([b745b48](https://github.com/char0n/ramda-adjunct/commit/b745b488939b02840470817bec8da1975641ee55))
|
|
12
|
+
|
|
1
13
|
## 6.0.0 (2025-12-13)
|
|
2
14
|
|
|
3
15
|
* feat: add support for ramda@0.32.0 (#3357) ([614ded2](https://github.com/char0n/ramda-adjunct/commit/614ded2)), closes [#3357](https://github.com/char0n/ramda-adjunct/issues/3357)
|
package/README.md
CHANGED
|
@@ -32,7 +32,7 @@ articles about the library.
|
|
|
32
32
|
<table>
|
|
33
33
|
<tr>
|
|
34
34
|
<td align="right" valign="middle">
|
|
35
|
-
<img src="https://
|
|
35
|
+
<img src="https://raw.githubusercontent.com/char0n/ramda-adjunct/master/assets/tidelift.webp" alt="Tidelift" width="60" />
|
|
36
36
|
</td>
|
|
37
37
|
<td valign="middle">
|
|
38
38
|
<a href="https://tidelift.com/subscription/pkg/npm-ramda-adjunct?utm_source=npm-ramda-adjunct&utm_medium=referral&utm_campaign=readme">
|
|
@@ -137,7 +137,7 @@ It is also possible that our ES5 distributions run on node versions older than 0
|
|
|
137
137
|
## API Documentation
|
|
138
138
|
|
|
139
139
|
[LATEST](https://char0n.github.io/ramda-adjunct),
|
|
140
|
-
[PREVIOUS](https://char0n.github.io/ramda-adjunct/
|
|
140
|
+
[PREVIOUS](https://char0n.github.io/ramda-adjunct/6.0.0),
|
|
141
141
|
[ALL VERSIONS](./VERSIONS.md)
|
|
142
142
|
|
|
143
143
|
## Wrote about us
|