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