removed stragler reference to 'inherits' module

This commit is contained in:
Spencer Alger
2013-12-02 20:35:28 -07:00
parent 2b5f6cd80d
commit 3ce4896da9

View File

@ -252,16 +252,6 @@ utils.repeat = function (what, times) {
return (new Array(times + 1)).join(what);
};
/**
* Override node's util.inherits function, providing a browser safe version thanks to lodash
*
* @param constructor {Function} - the constructor that should subClass superConstructor
* @param superConstructor {Function} - The parent constructor
*/
if (process.browser) {
utils.inherits = require('inherits');
}
/**
*
*/