4e3aa45d94c3d2e12150edd353e2464169070a9ef31bd38f636f9e3883c78d0f9b37f5200037610a207dad4dea5b96db1a3c9310e3577038c9f6115f03f908 426 B

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