1
0
Fork 0

Added documentation for attach_extend()

closure/master
Mike Gerwitz 2010-11-10 23:29:28 -05:00
parent 61985eea47
commit 86bbef6f77
1 changed files with 7 additions and 0 deletions

View File

@ -160,6 +160,13 @@ exports.extend = function( base )
}
/**
* Attaches extend method to the given function's prototype
*
* @param {Function} func function to attach method to
*
* @return undefined
*/
var attach_extend = function( func )
{
/**