1.0.2 • Published 6 years ago

the-decorators v1.0.2

Weekly downloads
4
License
MIT
Repository
github
Last release
6 years ago

the-decorators

Build Status npm Version JS Standard

Decorators for the-framework

Installation

$ npm install the-decorators --save

Usage

'use strict'

const {rescue} = require('the-decorators')

async function tryExample () {

  class MyClass {

    @rescue((e, instance) => console.error(e))
    async doSomethingMightThrow () {
      /* ... */
    }

  }

}

tryExample().catch((err) => console.error(err))

API Guide

License

This software is released under the MIT License.

Links