From ed3573e66bf0cbe7dc9547fd2ba5efca91e6b648 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 13 Feb 2026 21:34:27 +0000 Subject: [PATCH] Fix linting issue - split long comment line Co-authored-by: naorpeled <6171622+naorpeled@users.noreply.github.com> --- src/parser-engines.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/parser-engines.js b/src/parser-engines.js index 354a181..9df60b0 100644 --- a/src/parser-engines.js +++ b/src/parser-engines.js @@ -11,7 +11,8 @@ export default [ return parser.getBrowserName(true) === 'microsoft edge'; }, describe(ua) { - // Check if it's a Chromium-based Edge (desktop with " Edg/", Android with "EdgA/", or iOS with "EdgiOS/") + // Check if it's a Chromium-based Edge + // (desktop with " Edg/", Android with "EdgA/", or iOS with "EdgiOS/") const isBlinkBased = /\sedg\//i.test(ua) || /edg(a|ios)\//i.test(ua); // return blink if it's blink-based one