(title, body = '')
| 296 | |
| 297 | /** @param {string} titleOrBody - With one arg: body text. With two args: title and body. */ |
| 298 | export function successEmbed(title, body = '') { |
| 299 | if (arguments.length === 1) { |
| 300 | return buildNotificationEmbed('Success', title, 'success'); |
| 301 | } |
| 302 | |
| 303 | return buildNotificationEmbed(title || 'Success', body, 'success'); |
| 304 | } |
| 305 | |
| 306 | /** @param {string} titleOrBody - With one arg: body text. With two args: title and body. */ |
| 307 | export function infoEmbed(title, body = '') { |
no test coverage detected