@hostel-autometa/bind-decorator
v0.5.2
Published
Binds the this keyword of a method. Respectfully a fork of https://www.npmjs.com/package/bind-decorator
Readme
Introduction
Binds the this keyword on a class method.
This is a fork of bind-decorator for use with hostel-autometa.
npm add @hostel-autometa/bind-decoratorUse
import { Bind } from "@hostel-autometa/bind-decorator";
class Foo {
@Bind
a() {
// this.doStuff()
}
}