Printing done

This commit is contained in:
CAnetzberger
2022-01-31 15:24:52 +01:00
parent 884cca1159
commit 14a8467d33
34 changed files with 2215 additions and 509 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');
}