0.1.2 • Published 8 years ago

method-alias v0.1.2

Weekly downloads
2
License
MIT
Repository
github
Last release
8 years ago

Create a method alias without losing context

  • save call, the returned alias is always a callable function
  • dynamically type checked

--

Usage:

Install with npm: npm install --save method-alias

var Test= function(){};

Test.prototype.show= function( text ){
	alert( text ); 
};	

var
	 instance= new Text()
	,show= methodAlias( instance, 'show' )
;

show( 'hey!' );

###license

MIT