UNPKG

xenforo-dl

Version:
14 lines (13 loc) 485 B
const THREAD_HEADER_TEMPLATE = `=============================================================================== {thread.title} {thread.url} =============================================================================== `; export default class ThreadHeaderTemplate { static format(thread) { return THREAD_HEADER_TEMPLATE .replaceAll('{thread.title}', thread.title) .replaceAll('{thread.url}', thread.url); } } //# sourceMappingURL=Thread.js.map