UNPKG

discord-pagination-advanced

Version:

An module to create advanced pagination for your discord bots.

14 lines (11 loc) 311 B
module.exports = (data, embeds, index) => { if (typeof (embeds[index]) === "string") { data.content = embeds[index]; data.embeds = [] } else { data.embeds = [embeds[index]]; data.content = "\u200b"; } data.fetchReply = true; return data; }