We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
gajus
Learn more about funding links in repositories.
Report abuse
1 parent d309f79 commit 97c010eCopy full SHA for 97c010e
src/mapDataUsingRowHeightIndex.js
@@ -11,7 +11,7 @@ import wrapWord from './wrapWord';
11
export default (unmappedRows, rowHeightIndex, config) => {
12
const tableWidth = unmappedRows[0].length;
13
14
- const mappedRows = _.map(unmappedRows, (cells, index0) => {
+ const mappedRows = unmappedRows.map((cells, index0) => {
15
const rowHeight = _.times(rowHeightIndex[index0], () => {
16
return _.fill(Array(tableWidth), '');
17
});
0 commit comments