massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / table / dist / calculateRowHeightIndex.js
diff --git a/.config/coc/extensions/node_modules/coc-prettier/node_modules/table/dist/calculateRowHeightIndex.js b/.config/coc/extensions/node_modules/coc-prettier/node_modules/table/dist/calculateRowHeightIndex.js
deleted file mode 100644 (file)
index edc3e31..0000000
+++ /dev/null
@@ -1,46 +0,0 @@
-"use strict";
-
-Object.defineProperty(exports, "__esModule", {
-  value: true
-});
-exports.default = void 0;
-
-var _isBooleanObject = _interopRequireDefault(require("is-boolean-object"));
-
-var _isNumberObject = _interopRequireDefault(require("is-number-object"));
-
-var _calculateCellHeight = _interopRequireDefault(require("./calculateCellHeight"));
-
-function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
-
-/**
- * Calculates the vertical row span index.
- *
- * @param {Array[]} rows
- * @param {object} config
- * @returns {number[]}
- */
-const calculateRowHeightIndex = (rows, config) => {
-  const tableWidth = rows[0].length;
-  const rowSpanIndex = [];
-  rows.forEach(cells => {
-    const cellHeightIndex = new Array(tableWidth).fill(1);
-    cells.forEach((value, index1) => {
-      if (!(0, _isNumberObject.default)(config.columns[index1].width)) {
-        throw new TypeError('column[index].width must be a number.');
-      }
-
-      if (!(0, _isBooleanObject.default)(config.columns[index1].wrapWord)) {
-        throw new TypeError('column[index].wrapWord must be a boolean.');
-      }
-
-      cellHeightIndex[index1] = (0, _calculateCellHeight.default)(value, config.columns[index1].width, config.columns[index1].wrapWord);
-    });
-    rowSpanIndex.push(Math.max(...cellHeightIndex));
-  });
-  return rowSpanIndex;
-};
-
-var _default = calculateRowHeightIndex;
-exports.default = _default;
-//# sourceMappingURL=calculateRowHeightIndex.js.map
\ No newline at end of file