Apply brand style to an multiple embeds.
The embeds to apply the style to.
The brand to get the style from.
The embeds array after applying the style to it.
const brand = { color: 0xffffff }let embed = { title: 'HalfBot' }embed = applyStyle(embed, brand) Copy
const brand = { color: 0xffffff }let embed = { title: 'HalfBot' }embed = applyStyle(embed, brand)
const brand = { color: 0xffffff }let embeds = [{ title: 'HalfBot' }]embeds = applyStyle(embeds, brand) Copy
const brand = { color: 0xffffff }let embeds = [{ title: 'HalfBot' }]embeds = applyStyle(embeds, brand)
Apply brand style to an multiple embeds.