backbone-extend-node
v0.2.0
Published
Backbone's extend
Downloads
7
Readme
Backbone-extend
Just copied extend method from Backbone.js repository. Can be used in node.js style apps (including browserify on the client side)
Usage
var Base = require('backbone-extend');
Base.extend({
constructor: function() {
},
method: function() {
}
});