Skip to content

Commit

Permalink
remove debugging console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
iainnash committed Sep 27, 2022
1 parent fe4ab5c commit 24d5631
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion packages/typechain/src/codegen/syntax.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ export function getUsedIdentifiers(identifiers: string[], sourceFile: string): s
identifiers.forEach((identifier) => {
if (new RegExp(`\\W${identifier}(\\W|$)`).test(sourceFile)) usedIdentifiers.add(identifier)
})
console.log(Array.from(usedIdentifiers))
return Array.from(usedIdentifiers)
}

Expand Down

0 comments on commit 24d5631

Please sign in to comment.