Recently lost and found ties

kaka

function truncateTitle(text, wordCount = 2) { return text.split(" ").slice(0, wordCount).join(" "); } function truncateDescription(text, wordCount = 5) { return text.split(" ").slice(0, wordCount).join(" "); }

Dublin 6 Posted 12 months ago