Skip to content

Commit

Permalink
fix(formatter): remove false error log
Browse files Browse the repository at this point in the history
  • Loading branch information
collinwu committed Dec 11, 2022
1 parent d0d9d6a commit 5e17887
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/formatter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ export const convertToText = (

nodes.each((_index: number, element: cheerio.Element) => {
const node = doc(element);
console.error(node, "this is node in convertToText");
const nodeType = node.get(0) ? node.get(0).type : null;
const nodeName = node.get(0) ? node.get(0).tagName : null;

Expand Down

0 comments on commit 5e17887

Please sign in to comment.