minimal adjustments
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / table / dist / padTableData.js
1 "use strict";
2
3 Object.defineProperty(exports, "__esModule", {
4   value: true
5 });
6 exports.default = void 0;
7
8 /**
9  * @param {table~row[]} rows
10  * @param {object} config
11  * @returns {table~row[]}
12  */
13 const padTableData = (rows, config) => {
14   return rows.map(cells => {
15     return cells.map((value, index1) => {
16       const column = config.columns[index1];
17       return ' '.repeat(column.paddingLeft) + value + ' '.repeat(column.paddingRight);
18     });
19   });
20 };
21
22 var _default = padTableData;
23 exports.default = _default;
24 //# sourceMappingURL=padTableData.js.map