Angus Croll (2013-04-14T20:34:43.000Z)
github at esdiscuss.org (2013-07-12T02:26:57.051Z)
Lending my support to `Object.mixin` accepting a function as the argument?but no surprise there I guess :) Note: since functional mixins and constructors are syntactically identical we can now get gorgeously expressive?and make type inheritance way simpler (for the first time allowing multiple type inheritance) ```js //make a new thing and a new thang var thing = new Thing; var thang = new Thang; //OR have Thung inherit from Thing and Thang Object.mixin(Thung.prototype, Thing); Object.mixin(Thung.prototype, Thang); ```