From b86bce16af72478c70b0aa1d088f97184a77d6af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Connor=20B=C3=A4r?= Date: Mon, 13 Nov 2023 10:10:39 +0100 Subject: [PATCH] fix(parser): resolve issues with array detection (#516) - this change resolves issues with Next.js middlewares --- src/parser.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/parser.js b/src/parser.js index 2f9f39f..8cebb3e 100644 --- a/src/parser.js +++ b/src/parser.js @@ -87,7 +87,7 @@ class Parser { return _browser.test(this); } - if (_browser.test instanceof Array) { + if (Array.isArray(_browser.test)) { return _browser.test.some(condition => this.test(condition)); } @@ -170,7 +170,7 @@ class Parser { return _os.test(this); } - if (_os.test instanceof Array) { + if (Array.isArray(_os.test)) { return _os.test.some(condition => this.test(condition)); } @@ -246,7 +246,7 @@ class Parser { return _platform.test(this); } - if (_platform.test instanceof Array) { + if (Array.isArray(_platform.test)) { return _platform.test.some(condition => this.test(condition)); } @@ -297,7 +297,7 @@ class Parser { return _engine.test(this); } - if (_engine.test instanceof Array) { + if (Array.isArray(_engine.test)) { return _engine.test.some(condition => this.test(condition)); }