webpack/test/statsCases/split-chunks-dedup/node_modules/row/index.js

6 lines
193 B
JavaScript

const { cell } = require('cell')
const { tmpl } = require('templater')
module.exports.row = function(cells) {
return tmpl(`<tr>CELLS</tr>`, { CELLS: cells.map(c => cell(c)).join('\n') })
}