blob: 961b78d0bb574ed326f4c43434e661690d94ef8d [file] [log] [blame]
Yang Guo4fd355c2019-09-19 10:59:03 +02001"use strict";
Tim van der Lippe38208902021-05-11 16:37:59 +01002Object.defineProperty(exports, "__esModule", { value: true });
3exports.stringifyTableData = void 0;
4const utils_1 = require("./utils");
5const stringifyTableData = (rows) => {
6 return rows.map((cells) => {
7 return cells.map((cell) => {
8 return utils_1.normalizeString(String(cell));
9 });
10 });
Yang Guo4fd355c2019-09-19 10:59:03 +020011};
Tim van der Lippe38208902021-05-11 16:37:59 +010012exports.stringifyTableData = stringifyTableData;