.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / stylelint / node_modules / table / dist / stringifyTableData.js
1 "use strict";
2
3 Object.defineProperty(exports, "__esModule", {
4   value: true
5 });
6
7 /**
8  * Casts all cell values to a string.
9  *
10  * @param {table~row[]} rows
11  * @returns {table~row[]}
12  */
13 exports.default = rows => {
14   return rows.map(cells => {
15     return cells.map(String);
16   });
17 };