Skip to content

Instantly share code, notes, and snippets.

@slikts
Created April 9, 2017 08:35
Show Gist options
  • Save slikts/cc240dd25a2a747c807a7bf38cb8490b to your computer and use it in GitHub Desktop.
Save slikts/cc240dd25a2a747c807a7bf38cb8490b to your computer and use it in GitHub Desktop.
export const autobind = (target: any, propertyKey: string, descriptor: PropertyDescriptor) => {
Object.defineProperty(target, propertyKey, {
...descriptor,
value: descriptor.value.bind(target),
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment