7 lines
248 B
TypeScript
7 lines
248 B
TypeScript
![]() |
import { Attachment } from "eris";
|
||
|
|
||
|
export function formatReasonWithAttachments(reason: string, attachments: Attachment[]) {
|
||
|
const attachmentUrls = attachments.map(a => a.url);
|
||
|
return ((reason || "") + " " + attachmentUrls.join(" ")).trim();
|
||
|
}
|