blob: a4dffac13d9be6f1609abd82cc2d9f401be9687d [file] [log] [blame]
/**
* 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);
});
};