Skip to content

Instantly share code, notes, and snippets.

@Mati365
Created November 8, 2015 12:13
Show Gist options
  • Save Mati365/0355c410c8c48c5f2244 to your computer and use it in GitHub Desktop.
Save Mati365/0355c410c8c48c5f2244 to your computer and use it in GitHub Desktop.
Underscore partial with context in typescript
_.mixin({
partialBind: (fn: Function, context: any, ...args: any[]): any => {
return _.bind(_.partial(fn, ...args), context);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment