retuple 1.0.0-next.2 → 1.0.0-next.21
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/README.md +14 -1
- package/dist/index.cjs +538 -112
- package/dist/index.d.cts +1343 -297
- package/dist/index.d.ts +1343 -297
- package/dist/index.js +534 -106
- package/package.json +13 -10
package/README.md
CHANGED
|
@@ -1 +1,14 @@
|
|
|
1
|
-
|
|
1
|
+
<p>
|
|
2
|
+
<a href="https://github.com/traverse1984/retuple/actions?query=branch%3Adevelopment">
|
|
3
|
+
<img src="https://github.com/traverse1984/retuple/actions/workflows/test.yml/badge.svg?event=push&branch=main" alt="Retuple test status" />
|
|
4
|
+
</a>
|
|
5
|
+
<a href="https://opensource.org/licenses/MIT" rel="nofollow">
|
|
6
|
+
<img src="https://img.shields.io/github/license/traverse1984/retuple" alt="License">
|
|
7
|
+
</a>
|
|
8
|
+
<a href="https://github.com/traverse1984/retuple" rel="nofollow">
|
|
9
|
+
<img src="https://img.shields.io/github/stars/traverse1984/retuple" alt="GitHub stars"></a>
|
|
10
|
+
</p>
|
|
11
|
+
|
|
12
|
+
# Retuple
|
|
13
|
+
|
|
14
|
+
A `Result` type built around tuples. Treat errors as values and make exceptions exceptional.
|