Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/node_modules/table/dist/alignTableData.js
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
35 lines (28 sloc)
900 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use strict"; | |
Object.defineProperty(exports, "__esModule", { | |
value: true | |
}); | |
exports.default = void 0; | |
var _stringWidth = _interopRequireDefault(require("string-width")); | |
var _alignString = _interopRequireDefault(require("./alignString")); | |
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } | |
/** | |
* @param {table~row[]} rows | |
* @param {Object} config | |
* @returns {table~row[]} | |
*/ | |
const alignTableData = (rows, config) => { | |
return rows.map(cells => { | |
return cells.map((value, index1) => { | |
const column = config.columns[index1]; | |
if ((0, _stringWidth.default)(value) === column.width) { | |
return value; | |
} else { | |
return (0, _alignString.default)(value, column.width, column.alignment); | |
} | |
}); | |
}); | |
}; | |
var _default = alignTableData; | |
exports.default = _default; | |
//# sourceMappingURL=alignTableData.js.map |