mirror of
https://github.com/github/codeql-action.git
synced 2026-04-05 03:02:16 +00:00
Update checked-in dependencies
This commit is contained in:
30
node_modules/table/dist/stringifyTableData.js
generated
vendored
30
node_modules/table/dist/stringifyTableData.js
generated
vendored
@@ -1,22 +1,12 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = void 0;
|
||||
|
||||
/**
|
||||
* Casts all cell values to a string.
|
||||
*
|
||||
* @param {table~row[]} rows
|
||||
* @returns {table~row[]}
|
||||
*/
|
||||
const stringifyTableData = rows => {
|
||||
return rows.map(cells => {
|
||||
return cells.map(String);
|
||||
});
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.stringifyTableData = void 0;
|
||||
const utils_1 = require("./utils");
|
||||
const stringifyTableData = (rows) => {
|
||||
return rows.map((cells) => {
|
||||
return cells.map((cell) => {
|
||||
return utils_1.normalizeString(String(cell));
|
||||
});
|
||||
});
|
||||
};
|
||||
|
||||
var _default = stringifyTableData;
|
||||
exports.default = _default;
|
||||
//# sourceMappingURL=stringifyTableData.js.map
|
||||
exports.stringifyTableData = stringifyTableData;
|
||||
|
||||
Reference in New Issue
Block a user