This commit is contained in:
maxswa
2018-05-15 16:09:29 -04:00
parent 8cdf1fb19d
commit 5986f5feb6
233 changed files with 42104 additions and 2 deletions

7
node_modules/inherits/inherits.js generated vendored Normal file
View File

@@ -0,0 +1,7 @@
try {
var util = require('util');
if (typeof util.inherits !== 'function') throw '';
module.exports = util.inherits;
} catch (e) {
module.exports = require('./inherits_browser.js');
}