Skip to content

Commit

Permalink
UPDATE linting of logger.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
vinayak25 committed Feb 14, 2021
1 parent 366b6f1 commit 22a4115
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions lib/logger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,8 @@ export class Logger {
}

const pRows: any[] = [];
rows.forEach((r) =>
pRows.push(
Object.values(r).map((e) =>
(e.toString && e.toString()) || e
)
)
rows.forEach((r) =>
pRows.push(Object.values(r).map((e) => (e.toString && e.toString()) || e))
);

const p = new Table({ head: uniqueCols });
Expand Down

0 comments on commit 22a4115

Please sign in to comment.