discord-ftd
Version:
Discord - FTD (Fun Time Discord) is an NPM module packed with exciting Discord games for bots.
10 lines (9 loc) • 416 B
JavaScript
module.exports = {
performChecks(options) {
if (!options.question) throw new Error('Question is required.');
if (!options.option1) throw new Error('Option 1 is required.');
if (!options.option2) throw new Error('Option 2 is required.');
if (isNaN(options.time) || options.time <= 0) throw new Error('Time must be a positive number.');
return true;
}
};