Skip to content

Instantly share code, notes, and snippets.

@nfroidure
Created December 11, 2014 13:23
Show Gist options
  • Save nfroidure/8e07426a2bc9ff65dee5 to your computer and use it in GitHub Desktop.
Save nfroidure/8e07426a2bc9ff65dee5 to your computer and use it in GitHub Desktop.
Mixins mess in
var Mixin = require('Mixin');
var Mixin1 = require('Mixin1');
var Mixin2 = require('Mixin2');
var Mixin3 = require('Mixin3');
function MyCtor() {
}
Mixin.set(myCtor, Mixin1, Mixin2, Mixin3);
// Usage
new MyCtor().add();
// Q: Where add is defined ?
@nfroidure
Copy link
Author

lel. Tell this to React developpers :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment