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