start nodejs bot

This commit is contained in:
2021-02-11 02:38:15 +01:00
parent 968105f35d
commit 6d84704b1f
1814 changed files with 303741 additions and 0 deletions

13
node_modules/prism-media/src/util/loader.js generated vendored Normal file
View File

@@ -0,0 +1,13 @@
exports.require = function loader(list) {
const errorLog = [];
for (const [name, fn] of list) {
try {
const data = fn(require(name));
data.name = name;
return data;
} catch (e) {
errorLog.push(e);
}
}
throw new Error(errorLog.join('\n'));
};