lepu-test-platform-web/node_modules/table/dist/stringifyTableData.js.flow

12 lines
201 B
Plaintext

/**
* Casts all cell values to a string.
*
* @param {table~row[]} rows
* @returns {table~row[]}
*/
export default (rows) => {
return rows.map((cells) => {
return cells.map(String);
});
};