This repository has been archived on 2022-01-16. You can view files and clone it, but cannot push or open issues or pull requests.
irreligious/node_modules/table/dist/alignTableData.js

14 lines
480 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.alignTableData = void 0;
const alignString_1 = require("./alignString");
const alignTableData = (rows, config) => {
return rows.map((row) => {
return row.map((cell, cellIndex) => {
const { width, alignment } = config.columns[cellIndex];
return alignString_1.alignString(cell, width, alignment);
});
});
};
exports.alignTableData = alignTableData;