Skip to content

Commit

Permalink
remove console log
Browse files Browse the repository at this point in the history
  • Loading branch information
mauberti-bc committed Oct 24, 2024
1 parent 9c97430 commit cdbaeca
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions api/src/utils/xlsx-utils/worksheet-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ export const getHeaderIndex = (worksheet: xlsx.WorkSheet, headerName: string): n
* @return {*} {string[][]}
*/
export const getWorksheetRows = (worksheet: xlsx.WorkSheet): string[][] => {

const originalRange = getWorksheetRange(worksheet);

if (!originalRange) {
Expand All @@ -145,8 +144,6 @@ export const getWorksheetRows = (worksheet: xlsx.WorkSheet): string[][] => {
rowHasValues = true;
}

console.log(row)

if (row.length && rowHasValues) {
rowsToReturn.push(row);
}
Expand Down

0 comments on commit cdbaeca

Please sign in to comment.