catch-match 2.0.0 → 2.0.1
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 +3 -25
- package/package.json +1 -1
- package/src/__tests__/main.test.ts +2 -5
package/README.md
CHANGED
@@ -94,31 +94,9 @@ console.log(result); // {error: undefined, result: [1, 2, 3]}
|
|
94
94
|
## Example 3
|
95
95
|
|
96
96
|
```javascript
|
97
|
-
const result = $try(
|
98
|
-
context.tmp = 'any context data';
|
99
|
-
console.log('start', context);
|
100
|
-
// ...
|
97
|
+
const result = $try(() => {
|
101
98
|
throw SyntaxError;
|
102
|
-
})
|
103
|
-
// noop
|
104
|
-
}).other((error, context) => {
|
105
|
-
// error: SyntaxError
|
106
|
-
// context: {tmp: 'any context data'}
|
107
|
-
context.unexpectedError = true;
|
108
|
-
}).finally(({value, context, error}) => {
|
109
|
-
// value: undefined
|
110
|
-
// context: {tmp: 'any context data', unexpectedError: true}
|
111
|
-
// error: SyntaxError
|
112
|
-
if (!error) {
|
113
|
-
return value.reverse();
|
114
|
-
}
|
115
|
-
});
|
116
|
-
|
117
|
-
console.log(result);
|
118
|
-
// {
|
119
|
-
// value: undefined
|
120
|
-
// context: {tmp: 'any context data', unexpectedError: true}
|
121
|
-
// error: SyntaxError
|
122
|
-
// }
|
99
|
+
})
|
123
100
|
|
101
|
+
console.log(result); // { error: SyntaxError, result: undefined }
|
124
102
|
```
|
package/package.json
CHANGED
@@ -211,16 +211,13 @@ test('should be return result without branches', () => {
|
|
211
211
|
let matchOther = jest.fn();
|
212
212
|
let matchFinally = jest.fn();
|
213
213
|
|
214
|
-
class CustomError extends Error {
|
215
|
-
}
|
216
|
-
|
217
214
|
const result = $try(() => {
|
218
|
-
throw
|
215
|
+
throw SyntaxError;
|
219
216
|
});
|
220
217
|
|
221
218
|
expect(matchCustomError).not.toBeCalled();
|
222
219
|
expect(matchArrayOfErrors).not.toBeCalled();
|
223
220
|
expect(matchOther).not.toBeCalled();
|
224
221
|
expect(matchFinally).not.toBeCalled();
|
225
|
-
expect(result).toMatchObject({ error:
|
222
|
+
expect(result).toMatchObject({ error: SyntaxError, result: undefined });
|
226
223
|
});
|