andreypopp/autobind-decorator
View on GitHubIf bound methods or fields are re-assigned, they become shared between instances
Open
#76 opened on Nov 16, 2018
PR welcomebughelp wanted
Description
If bound methods or fields are re-assigned, they become shared between instances
Found this issue while trying to debounce bound method
Below test will fail
class A {
@boundMethod
bound() {}
}
const a = new A();
const b = new A();
a.bound = {
foo: 'bar'
};
assert.notEqual(a.bound, b.bound);