npm + babel - Uncaught TypeError: xxx is not a function


クラス内でメソッドをコールするとタイトルのようなエラーが出た。

Uncaught TypeError: xxx is not a function

thisが参照できなかったらしいのでコンストラクタ内でbindしておくとうまくいった。

class MyClass {
    constructor() {
        this.myMethod = this.myMethod.bind(this);
    }
...