TypeError: fields.flat is not a function 0 discord.js embed code example
Example 1: fields.flat is not a function discord.js
Re-Install Node.js because Discord.js Embeds only work on node version 12 and up
Example 2: fields.flat is not a function
//node_modules/discord.js/src/structures/MessageEmbed.js
static normalizeFields(...fields) {
return fields
.reduce((acc, val) => acc.concat(val), [])
.map(field =>
this.normalizeField(
field && field.name,
field && field.value,
field && typeof field.inline === 'boolean' ? field.inline : false,
),
);
}