mirror of
https://github.com/thangisme/notes.git
synced 2025-11-23 13:12:25 -05:00
Initial commit
This commit is contained in:
38
node_modules/table/dist/alignTableData.js
generated
vendored
Normal file
38
node_modules/table/dist/alignTableData.js
generated
vendored
Normal file
@@ -0,0 +1,38 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
|
||||
var _lodash = require('lodash');
|
||||
|
||||
var _lodash2 = _interopRequireDefault(_lodash);
|
||||
|
||||
var _stringWidth = require('string-width');
|
||||
|
||||
var _stringWidth2 = _interopRequireDefault(_stringWidth);
|
||||
|
||||
var _alignString = require('./alignString');
|
||||
|
||||
var _alignString2 = _interopRequireDefault(_alignString);
|
||||
|
||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||||
|
||||
/**
|
||||
* @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, (value, index1) => {
|
||||
const column = config.columns[index1];
|
||||
|
||||
if ((0, _stringWidth2.default)(value) === column.width) {
|
||||
return value;
|
||||
} else {
|
||||
return (0, _alignString2.default)(value, column.width, column.alignment);
|
||||
}
|
||||
});
|
||||
});
|
||||
};
|
||||
Reference in New Issue
Block a user