diff --git a/src/lib/utils.js b/src/lib/utils.js index 1170ad50e..99c256a51 100644 --- a/src/lib/utils.js +++ b/src/lib/utils.js @@ -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'); -} - /** * */