function displayLink(text, url, isPlainText) { return isPlainText ? `${text} (${url})` : `${text}` } module.exports = { displayLink }