1
0
Fork 0

chore(core): Linter fix

This commit is contained in:
joostdecock 2023-04-15 15:37:48 +02:00
parent cc41573b6f
commit 3cbb59e30f

View file

@ -572,7 +572,7 @@ Path.prototype.noop = function (id = false) {
Path.prototype.offset = function (distance) {
distance = __asNumber(distance, 'distance', 'Path.offset', this.log)
return __pathOffset(this, distance, this.log)
return __pathOffset(this, distance)
}
/**