Skip to content
This repository has been archived by the owner on Aug 21, 2024. It is now read-only.

Commit

Permalink
remove console.logs in code
Browse files Browse the repository at this point in the history
  • Loading branch information
testersen committed Nov 17, 2023
1 parent 02c43c9 commit 4519cf6
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/util/trimIndent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,6 @@ export function trimIndent(
...args: unknown[]
): string {
let str = typeof content === "string" ? content : rawString(content, ...args);
console.log("Trimming indent on");
console.log(str);
console.log("Trimmed");
const firstLines = str.match(FIRST_LINES)?.groups?.firstLines || "";
const lastLines = str.match(LAST_LINES)?.groups?.lastLines || "";
str = trimEnd(
Expand Down

0 comments on commit 4519cf6

Please sign in to comment.