// TODO: This file was created by bulk-decaffeinate.
// Sanity-check the conversion and remove this comment.
/*
* decaffeinate suggestions:
* DS102: Remove unnecessary code created because of implicit returns
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/main/docs/suggestions.md
*/
app.templates.path = function (doc, type, entry) {
const arrow = '';
let html = `${doc.fullName}`;
if (type) {
html += `${arrow}${
type.name
}`;
}
if (entry) {
html += `${arrow}${$.escape(entry.name)}`;
}
return html;
};