8 lines
104 B
JavaScript
8 lines
104 B
JavaScript
'use strict'
|
|
|
|
module.exports = tableCell
|
|
|
|
function tableCell(node) {
|
|
return this.all(node).join('')
|
|
}
|