blob: 0217e3b7b1f376184541eaba2ebde4639a81166c [file] [log] [blame]
Yang Guo4fd355c2019-09-19 10:59:03 +02001"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