Blame view

node_modules/table/dist/truncateTableData.js 661 Bytes
ce4c83ff   wxy   初始提交
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
  'use strict';
  
  Object.defineProperty(exports, "__esModule", {
    value: true
  });
  
  var _lodash = require('lodash');
  
  var _lodash2 = _interopRequireDefault(_lodash);
  
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
  
  /**
   * @todo Make it work with ASCII content.
   * @param {table~row[]} rows
   * @param {Object} config
   * @returns {table~row[]}
   */
  exports.default = (rows, config) => {
    return _lodash2.default.map(rows, cells => {
      return _lodash2.default.map(cells, (content, index) => {
        return _lodash2.default.truncate(content, {
          length: config.columns[index].truncate
        });
      });
    });
  };