Skip to content

Instantly share code, notes, and snippets.

@nicohvi
Last active February 29, 2016 10:50
Show Gist options
  • Save nicohvi/f1b84e293d48bcb7f360 to your computer and use it in GitHub Desktop.
Save nicohvi/f1b84e293d48bcb7f360 to your computer and use it in GitHub Desktop.
bind.js
export function bind(self, ...methods) {
methods.map(meth => self[meth] = self[meth].bind(self));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment