npm.io
0.0.1 • Published 13 years ago

bind-all-component

Licence
Version
0.0.1
Deps
4
Vulns
0
Weekly
0
Stars
7

bind-all

CircleCI Codecov

Create singletons from objects.

Installation

$ npm install bind-all

API

function User() {
  this.x = 4;
}

User.prototype.y = function y() {
  return this.x;
};

var user = bindAll(new User());

user.y.apply(this); // 4