Update checked-in dependencies
This commit is contained in:
parent
6b0d45a5c6
commit
cc1adb825a
4247 changed files with 144820 additions and 149530 deletions
62
node_modules/table/dist/wrapCell.js
generated
vendored
62
node_modules/table/dist/wrapCell.js
generated
vendored
|
|
@ -1,48 +1,32 @@
|
|||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = void 0;
|
||||
|
||||
var _wrapString = _interopRequireDefault(require("./wrapString"));
|
||||
|
||||
var _wrapWord = _interopRequireDefault(require("./wrapWord"));
|
||||
|
||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||||
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.wrapCell = void 0;
|
||||
const utils_1 = require("./utils");
|
||||
const wrapString_1 = require("./wrapString");
|
||||
const wrapWord_1 = require("./wrapWord");
|
||||
/**
|
||||
* Wrap a single cell value into a list of lines
|
||||
*
|
||||
* Always wraps on newlines, for the remainder uses either word or string wrapping
|
||||
* depending on user configuration.
|
||||
*
|
||||
* @param {string} cellValue
|
||||
* @param {number} columnWidth
|
||||
* @param {boolean} useWrapWord
|
||||
* @returns {Array}
|
||||
*/
|
||||
const wrapCell = (cellValue, columnWidth, useWrapWord) => {
|
||||
// First split on literal newlines
|
||||
const cellLines = cellValue.split('\n'); // Then iterate over the list and word-wrap every remaining line if necessary.
|
||||
|
||||
for (let lineNr = 0; lineNr < cellLines.length;) {
|
||||
let lineChunks;
|
||||
|
||||
if (useWrapWord) {
|
||||
lineChunks = (0, _wrapWord.default)(cellLines[lineNr], columnWidth);
|
||||
} else {
|
||||
lineChunks = (0, _wrapString.default)(cellLines[lineNr], columnWidth);
|
||||
} // Replace our original array element with whatever the wrapping returned
|
||||
|
||||
|
||||
cellLines.splice(lineNr, 1, ...lineChunks);
|
||||
lineNr += lineChunks.length;
|
||||
}
|
||||
|
||||
return cellLines;
|
||||
const wrapCell = (cellValue, cellWidth, useWrapWord) => {
|
||||
// First split on literal newlines
|
||||
const cellLines = utils_1.splitAnsi(cellValue);
|
||||
// Then iterate over the list and word-wrap every remaining line if necessary.
|
||||
for (let lineNr = 0; lineNr < cellLines.length;) {
|
||||
let lineChunks;
|
||||
if (useWrapWord) {
|
||||
lineChunks = wrapWord_1.wrapWord(cellLines[lineNr], cellWidth);
|
||||
}
|
||||
else {
|
||||
lineChunks = wrapString_1.wrapString(cellLines[lineNr], cellWidth);
|
||||
}
|
||||
// Replace our original array element with whatever the wrapping returned
|
||||
cellLines.splice(lineNr, 1, ...lineChunks);
|
||||
lineNr += lineChunks.length;
|
||||
}
|
||||
return cellLines;
|
||||
};
|
||||
|
||||
var _default = wrapCell;
|
||||
exports.default = _default;
|
||||
//# sourceMappingURL=wrapCell.js.map
|
||||
exports.wrapCell = wrapCell;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue