Skip to Content

Autobind

Automatically binds all class methods to the instance.

import { autobind } from 'aspectra/utils'
 
@autobind
class Greeting {
  private readonly name = 'John'
 
  public hello() {
    console.log(`Hello from ${this.name}`)
  }
 
  public farewell() {
    console.log(`Goodbye from ${this.name}`)
  }
}
 
const { hello, farewell } = new Greeting()
hello()
farewell()
[auto-generated] output:
Hello from John
Goodbye from John
Last updated on