Every new change
This commit is contained in:
11
node_modules/table/dist/stringifyTableData.js.flow
generated
vendored
Normal file
11
node_modules/table/dist/stringifyTableData.js.flow
generated
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
/**
|
||||
* 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);
|
||||
});
|
||||
};
|
Reference in New Issue
Block a user