bindself

1.0.0 • Public • Published

bindself

Binds all class methods to object.

Usage

const bindself = require('bindself');

class A {
  constructor() {
    bindself(this);
  }

  something() {
    // do something with this
  }
}

const a = new A();

// now a.something() is bound to a

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i bindself

      Weekly Downloads

      1

      Version

      1.0.0

      License

      MIT

      Last publish

      Collaborators

      • sebasgarcep