minimal adjustments
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / table / dist / stringifyTableData.js.flow
1 /**
2  * Casts all cell values to a string.
3  *
4  * @param {table~row[]} rows
5  * @returns {table~row[]}
6  */
7 export default (rows) => {
8   return rows.map((cells) => {
9     return cells.map(String);
10   });
11 };