1.0.3 • Published 7 years ago

chain-decorator v1.0.3

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

chain-decorator

Simple ES7 Decorator to allow method chaining.

Installation

yarn

yarn add chain-decorator

npm

npm i -S chain-decorator

Usage

import { chain } from 'chain-decorator';

class A {
  @chain
  foo() {
    console.log('foo')
  }
}


new A().foo().foo();
1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago