/* * decaffeinate suggestions: * DS102: Remove unnecessary code created because of implicit returns * Full docs: https://github.com/decaffeinate/decaffeinate/blob/main/docs/suggestions.md */ const arrow = ""; app.templates.path = function(doc, type, entry) { let html = `${doc.fullName}`; if (type) { html += `${arrow}${type.name}`; } if (entry) { html += `${arrow}${$.escape(entry.name)}`; } return html; };