3.1.0 • Published 4 years ago
catch-match v3.1.0
catch-match

Motivation
java
try {
    ...
} catch (ExceptionClass1 e) {
   ....
} catch (ExceptionClass2, ExceptionClass3 e) {
   ....
} catch (any) {
  ...
} finally {
  ....
}javascript
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
//> finalFeatures
Supporting sync/async functions
Getting started
yarn add catch-match
or 
npm install catch-matchimport $try from 'catch-match';
// or
import { $try } from 'catch-match';Example 1
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 }Example 2
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]}Example 3
const result = $try(() => {
  throw SyntaxError;
})
console.log(result); // { error: SyntaxError, result: undefined }Promises example
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' }3.1.0
4 years ago
3.0.3
4 years ago
3.0.2
4 years ago
3.0.1
4 years ago
3.0.0
4 years ago
2.0.1
4 years ago
2.0.0
4 years ago
1.1.0
4 years ago
1.0.5
4 years ago
1.0.4
4 years ago
1.0.3
4 years ago
1.0.2
4 years ago
1.0.1
4 years ago
1.0.0
4 years ago
0.2.3
4 years ago
0.2.2
4 years ago
0.2.1
4 years ago
0.2.0
4 years ago
0.1.0
4 years ago