table-cell.js 107 B

1234567
  1. 'use strict';
  2. module.exports = tableCell;
  3. function tableCell(node) {
  4. return this.all(node).join('');
  5. }