node-extend

v0.0.1
extend for javascript
extend node.js javascript

extend

extend for node.js

example

function A(){
    this.name = 'brighthas | leo';
}

A.prototype.getName = function(){
    return this.name;
}

function B(){
    this.age = 31;
}

B.prototype.getAge = function(){
    return this.age;
}


var extend = require('node-extend');
var A2 = extend(A,B); // A extend B.
var a = new A2();
console.log(a.getName());  // brighthas | leo
console.log(a.getAge());   // 31

install

npm install node-extend

Metadata

  • BSD
  • Whatever
  • brighthas
  • released 9/6/2012

Downloads

Maintainers