autobind

1.0.3 • Public • Published

autobind

autobind decorator

Usage

Auto bind method
class A {
  constructor() {
    this.x = 123;
  }
  @autobind
  f() {
    return this.x;
  }
  g() {
    return this.x;
  }
}
 
var a = new A();
 
a.f.call({ x: 456 }) === 123; // true
a.g.call({ x: 456 }) === 456; // true
Auto bind class methods
@autobind
class A {
  constructor() {
    this.x = 123;
  }
  f() {
    return this.x;
  }
  g() {
    return this.x;
  }
}
 
var a = new A();
 
a.f.call({ x: 456 }) === 123; // true
a.g.call({ x: 456 }) === 123; // true

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i autobind

      Weekly Downloads

      397

      Version

      1.0.3

      License

      MIT

      Last publish

      Collaborators

      • yanagieiichi