Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
catch-match
Advanced tools
![image](https://user-images.githubusercontent.com/1615093/149611056-ad5f8c6c-d7fe-4a64-aed4-a1763135e7ee.png)
try {
...
} catch (ExceptionClass1 e) {
....
} catch (ExceptionClass2, ExceptionClass3 e) {
....
} catch (any) {
...
} finally {
....
}
try {
error; // error instruction
} catch (err) {
switch(err.constructor) {
case ReferenceError:
case SyntaxError:
console.error(`${err.constructor.name}: ${err.message}`);
break;
default:
console.error('other error:', err);
}
} finally {
console.log('final')
}
//> ReferenceError: error is not defined
//> final
Supporting sync/async functions
yarn add catch-match
or
npm install catch-match
import $try from 'catch-match';
// or
import { $try } from 'catch-match';
const result = $try(() => {
throw SyntaxError;
}).catch(ReferenceError, () => {
// noop
}).catch([TypeError, SyntaxError], (error) => {
// to be called
}).other((error) => {
// noop
}).finally(({ result, error }) => {
return result;
});
console.log(result); // { error: SyntaxError, result: undefined }
const result = $try(() => {
return [1, 2, 3];
}).catch(ReferenceError, () => {
// noop
}).catch([TypeError, SyntaxError], (error) => {
// to be called
}).other((error) => {
// noop
}).finally(({ result, error }) => {
return result;
});
console.log(result); // {error: undefined, result: [1, 2, 3]}
const result = $try(() => {
throw SyntaxError;
})
console.log(result); // { error: SyntaxError, result: undefined }
class AuthError extends Error {}
function proc(event: string) {
return $try(() => new Promise((resolve, reject) => {
switch (event) {
case 'resolve':
resolve('resolved')
break;
case 'reject':
reject('rejected')
break;
case 'syntax':
throw SyntaxError
case 'auth':
throw AuthError
case 'error':
throw 'error'
default:
throw 'other errors'
}
}).catch('error', () => {
// console.log('error')
}).catch([SyntaxError, AuthError], (error) => {
// console.log(error)
}).other((error) => {
// console.log(error)
}).finally(({ value, error }) => {
// console.log({ value, error })
})
}
await proc('resolve') // { value: 'resolved' }}
await proc('reject') // { error: 'rejected' }
await proc('syntax') // { error: SyntaxError }
await proc('auth') // { error: AuthError }
await proc('error') // { error: 'error' }
await proc('other') // { error: 'other errors' }
FAQs
![image](https://user-images.githubusercontent.com/1615093/149611056-ad5f8c6c-d7fe-4a64-aed4-a1763135e7ee.png)
The npm package catch-match receives a total of 7 weekly downloads. As such, catch-match popularity was classified as not popular.
We found that catch-match demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.