This commit is contained in:
asc24
2026-07-24 16:13:19 +08:00
parent dc4f6b2132
commit c3fce0ee70
180 changed files with 50264 additions and 1407 deletions

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

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