Skip to content

Instantly share code, notes, and snippets.

@badsyntax
Created April 25, 2015 07:45
Show Gist options
  • Save badsyntax/b2d9c843236960f145e7 to your computer and use it in GitHub Desktop.
Save badsyntax/b2d9c843236960f145e7 to your computer and use it in GitHub Desktop.
es6 mixin
export default (Parent, ...mixins) => {
class Mixed extends Parent {}
Object.assign(Mixed.prototype, ...mixins);
return Mixed;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment