UNPKG

bindmethods

Version:

A cleaner way to bind methods. Written for React + ES6

6 lines (5 loc) 157 B
module.exports = function bindMethods(methods, that) { for(var i = 0; i < methods.length; i++) { that[methods[i]] = that[methods[i]].bind(that); } }