Skip to content

Instantly share code, notes, and snippets.

@anhldbk
Last active August 22, 2022 13:55
Show Gist options
  • Save anhldbk/782e13de7f79b07e556a029a9ce49fa3 to your computer and use it in GitHub Desktop.
Save anhldbk/782e13de7f79b07e556a029a9ce49fa3 to your computer and use it in GitHub Desktop.
Bind this for all methods in ES6 classes
'use strict';
class Binder {}
Binder.getAllMethods = function(instance, cls) {
return Object.getOwnPropertyNames(Object.getPrototypeOf(instance))
.filter(name => {
let method = instance[name];
return !(!(method instanceof Function) || method === cls);
});
}
Binder.bind = function(instance, cls) {
getAllMethods(instance, cls)
.forEach(mtd => {
instance[mtd] = instance[mtd].bind(instance);
})
}
module.exports = Binder;
@TruDan
Copy link

TruDan commented Aug 22, 2022

@ivangeorgiew but what is the pun? I'm confused.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment