method-alias
v0.1.2
Published
Create a method alias without losing context
Downloads
2
Readme
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