mirror of
https://github.com/joelwmale/webhook-action.git
synced 2024-11-25 17:06:52 +01:00
11 lines
201 B
Text
11 lines
201 B
Text
/**
|
|
* 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);
|
|
});
|
|
};
|