0.1.0 • Published 9 years ago

jsdecorators v0.1.0

Weekly downloads
1
License
Apache-2.0
Repository
github
Last release
9 years ago

Installation

npm install --save jsdecorators

Usage

import * as jsd from 'jsdecorators';

class Test {
  @jsd.restorecwd
  doSomeWork() { 
    
  }

  @jsd.deprecate('Use doSomeWork instead')
  doSomeOtherThing() { 
    
  }
}

Decorators

See core-decorators for more information about the bundled core decorators.

restorecwd

Wraps the target in a try/finally and restores process.cwd() to the value it had before the target was invoked.

0.1.0

9 years ago