Update checked-in dependencies
This commit is contained in:
parent
6b0d45a5c6
commit
cc1adb825a
4247 changed files with 144820 additions and 149530 deletions
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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue