From 3cbb59e30fa8d295350a1c39b764fa023cadf152 Mon Sep 17 00:00:00 2001 From: joostdecock Date: Sat, 15 Apr 2023 15:37:48 +0200 Subject: [PATCH] chore(core): Linter fix --- packages/core/src/path.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/src/path.mjs b/packages/core/src/path.mjs index cc4d560ad12..d8492ff1fb2 100644 --- a/packages/core/src/path.mjs +++ b/packages/core/src/path.mjs @@ -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) } /**