Skip to content
This repository was archived by the owner on Sep 16, 2022. It is now read-only.

Commit eaa10dc

Browse files
Removed debug logging
1 parent 4f0671e commit eaa10dc

File tree

1 file changed

+0
-4
lines changed
  • src/elementHandlers/pathElementHandler

1 file changed

+0
-4
lines changed

src/elementHandlers/pathElementHandler/index.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,6 @@ export default function handlePathElement(
3535

3636
options.lastPathId++;
3737

38-
console.log('Props', props);
39-
4038
const pathData = new SVGPathData(props.d).toAbs();
4139
return convertPathToSwift(pathData.commands, options);
4240
} else {
@@ -52,8 +50,6 @@ export default function handlePathElement(
5250
const convertPathToSwift: SwiftGenerator<SVGCommand[]> = (data, options) => {
5351
const swiftAccumulator: string[] = [];
5452

55-
console.log('Data points', data);
56-
5753
for (let i = 0; i < data.length; i++) {
5854
const el = data[i];
5955

0 commit comments

Comments
 (0)