UNPKG

426 BJavaScriptView Raw
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.default = void 0;
7
8/**
9 * Casts all cell values to a string.
10 *
11 * @param {table~row[]} rows
12 * @returns {table~row[]}
13 */
14const stringifyTableData = rows => {
15 return rows.map(cells => {
16 return cells.map(String);
17 });
18};
19
20var _default = stringifyTableData;
21exports.default = _default;
22//# sourceMappingURL=stringifyTableData.js.map
\No newline at end of file