Skip to content

tomkis/backbone-extend

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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() {

    }
  });