1.0.3 • Published 5 years ago

chain-decorator v1.0.3

Weekly downloads
3
License
MIT
Repository
github
Last release
5 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

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago