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