Détail du package

@autometa/bind-decorator

Bendat131ISC0.5.1

Binds the this keyword of a method. Respectfully a fork of https://www.npmjs.com/package/bind-decorator

bind this keyword, bind decorator

readme

Introduction

Binds the this keyword on a class method.

This is a fork of bind-decorator for use with Autometa.

npm add @autometa/bind-decorator

Use

import { Bind } from "@autometa/bind-decorator";

class Foo {
  @Bind
  a() {
    // this.doStuff()
  }
}