Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/fourtyone11/origin-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'assets/node_modules/table/dist/padTableData.js')
-rw-r--r--assets/node_modules/table/dist/padTableData.js24
1 files changed, 0 insertions, 24 deletions
diff --git a/assets/node_modules/table/dist/padTableData.js b/assets/node_modules/table/dist/padTableData.js
deleted file mode 100644
index 81bd5f5..0000000
--- a/assets/node_modules/table/dist/padTableData.js
+++ /dev/null
@@ -1,24 +0,0 @@
-"use strict";
-
-Object.defineProperty(exports, "__esModule", {
- value: true
-});
-exports.default = void 0;
-
-/**
- * @param {table~row[]} rows
- * @param {Object} config
- * @returns {table~row[]}
- */
-const padTableData = (rows, config) => {
- return rows.map(cells => {
- return cells.map((value, index1) => {
- const column = config.columns[index1];
- return ' '.repeat(column.paddingLeft) + value + ' '.repeat(column.paddingRight);
- });
- });
-};
-
-var _default = padTableData;
-exports.default = _default;
-//# sourceMappingURL=padTableData.js.map \ No newline at end of file