Last active
August 22, 2022 13:55
-
-
Save anhldbk/782e13de7f79b07e556a029a9ce49fa3 to your computer and use it in GitHub Desktop.
Bind this for all methods in ES6 classes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'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; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@ivangeorgiew but what is the pun? I'm confused.