mirror of
https://github.com/danbulant/discord.js
synced 2026-06-18 22:21:17 +00:00
Stop ESLint whining
This commit is contained in:
parent
3e460162ca
commit
80595d9bec
1 changed files with 1 additions and 1 deletions
|
|
@ -19,7 +19,7 @@ exports.methods = {};
|
|||
for (const libName of Object.keys(libs)) {
|
||||
try {
|
||||
const lib = require(libName);
|
||||
if (libName === 'libsodium-wrappers' && lib.ready) await lib.ready;
|
||||
if (libName === 'libsodium-wrappers' && lib.ready) await lib.ready; // eslint-disable-line no-await-in-loop
|
||||
exports.methods = libs[libName](lib);
|
||||
break;
|
||||
} catch (err) {} // eslint-disable-line no-empty
|
||||
|
|
|
|||
Loading…
Reference in a new issue