Every new change
This commit is contained in:
28
node_modules/table/dist/calculateCellWidthIndex.js
generated
vendored
Normal file
28
node_modules/table/dist/calculateCellWidthIndex.js
generated
vendored
Normal file
@ -0,0 +1,28 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = void 0;
|
||||
|
||||
var _stringWidth = _interopRequireDefault(require("string-width"));
|
||||
|
||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||||
|
||||
/**
|
||||
* Calculates width of each cell contents.
|
||||
*
|
||||
* @param {string[]} cells
|
||||
* @returns {number[]}
|
||||
*/
|
||||
const calculateCellWidthIndex = cells => {
|
||||
return cells.map(value => {
|
||||
return Math.max(...value.split('\n').map(line => {
|
||||
return (0, _stringWidth.default)(line);
|
||||
}));
|
||||
});
|
||||
};
|
||||
|
||||
var _default = calculateCellWidthIndex;
|
||||
exports.default = _default;
|
||||
//# sourceMappingURL=calculateCellWidthIndex.js.map
|
Reference in New Issue
Block a user