From cc41573b6f08af2941ca0730d3b65935a576f34e Mon Sep 17 00:00:00 2001 From: joostdecock Date: Sat, 15 Apr 2023 15:34:39 +0200 Subject: [PATCH] chore(core): Linter fix --- packages/core/src/path.mjs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/core/src/path.mjs b/packages/core/src/path.mjs index 60d94747c38..cc4d560ad12 100644 --- a/packages/core/src/path.mjs +++ b/packages/core/src/path.mjs @@ -1280,10 +1280,9 @@ function __offsetLine(from, to, distance, log = false) { * @private * @param {Path} path - The Path to offset * @param {float} distance - The distance to offset by - * @param {object} log - The log methods * @return {Path} offsetted - The offsetted Path instance */ -function __pathOffset(path, distance, log) { +function __pathOffset(path, distance) { let offset = [] let current let start = false