Skip to content

Instantly share code, notes, and snippets.

View sgreenfield's full-sized avatar

Scott Greenfield sgreenfield

  • Omaha, NE
View GitHub Profile
//micro backbone-ish experiment with prototypal inheritance
var Vertebra = {}; //not backbone.js, not spine.js, Vertebra!
Vertebra.instance = function(){
this.initialize(arguments);
};
Vertebra.create = (function() {
function F(args){ return Vertebra.instance.apply(this, args); }