0.2.0 • Published 12 years ago

node-extend v0.2.0

Weekly downloads
113
License
-
Repository
github
Last release
12 years ago

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