UNPKG

statistician

Version:

Create and compare files stats, and webpack bundle stats

12 lines (10 loc) 229 B
const EMPTY = [ undefined, null, ]; /** * Create a markdown table row * @param {String[]} cells * @return {String} */ module.exports = cells => ['', ...cells].map(i => EMPTY.includes(i) ? '' : `${i} `).join('| ').trim();