katoikia-app/web-ui/web-react/node_modules/table/dist/stringifyTableData.js.flow

12 lines
201 B
Plaintext
Raw Normal View History

2022-07-06 04:15:11 +00:00
/**
* 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);
});
};