Skip to content

Commit

Permalink
fix: remove debugging console.logs (#163)
Browse files Browse the repository at this point in the history
  • Loading branch information
dsherret committed Aug 5, 2023
1 parent 77ccec6 commit f3befe2
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/path.ts
Original file line number Diff line number Diff line change
Expand Up @@ -263,8 +263,6 @@ export class PathRef {
/** Gets the relative path from this path to the specified path. */
relative(to: string | URL | PathRef): string {
const toPathRef = ensurePathRef(to);
console.log(this.resolve().#path, toPathRef.resolve().#path);
console.log(stdPath.relative(this.resolve().#path, toPathRef.resolve().#path));
return stdPath.relative(this.resolve().#path, toPathRef.resolve().#path);
}

Expand Down

0 comments on commit f3befe2

Please sign in to comment.