UNPKG

seo-html-defect-checker

Version:

Lightweight module for checking SEO HTML defect elements.

17 lines (14 loc) 297 B
function convertObjectToString(obj){ const results = [] for (let i in obj) { if (obj[i]) { results.push(`${i}=${obj[i]}`) } else { results.push(`${i}`) } } return results.join(', ') } module.exports = { convertObjectToString }