mirror of
https://github.com/joelwmale/webhook-action.git
synced 2024-08-25 08:08:00 +00:00
12 lines
201 B
Plaintext
12 lines
201 B
Plaintext
/**
|
|
* 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);
|
|
});
|
|
};
|