Files
wechatpay-enterprise-web/node_modules/table/dist/stringifyTableData.js.flow
jefferyzhao b9bdc8598b first commit
2025-07-31 17:44:12 +08:00

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);
});
};