🚧 Removed lingering console.log
This commit is contained in:
parent
0248a1a2ad
commit
62671f0cda
1 changed files with 1 additions and 4 deletions
|
@ -415,11 +415,8 @@ Path.prototype.reverse = function() {
|
|||
}
|
||||
if (op.to) current = op.to;
|
||||
}
|
||||
console.log("sections", sections);
|
||||
let rev = new Path().move(current);
|
||||
for (let section of sections.reverse()) {
|
||||
rev.ops.push(section.ops[1]);
|
||||
}
|
||||
for (let section of sections.reverse()) rev.ops.push(section.ops[1]);
|
||||
if (closed) rev.close();
|
||||
|
||||
return rev;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue