UNPKG

tfk-search-index-politikere

Version:
34 lines (24 loc) 704 B
'use strict' function buildDescription (data) { if (!data) { throw new Error('Missing required input') } var content = [] var committeeNames = data.committees.map(function (item) { return item.name }) .join(', ') content.push(data.name) content.push(committeeNames) if (data.phone && data.phone.length > 0) { content.push('Telefon: ' + data.phone) } if (data.mobilePhone && data.mobilePhone.length > 0) { content.push('Mobil: ' + data.mobilePhone) } if (data.publicMail && data.publicMail.length > 0) { content.push('E-post: ' + data.publicMail) } return content.join(', ') } module.exports = buildDescription