mirror of
https://github.com/lancedikson/bowser
synced 2024-10-27 20:34:22 +00:00
Replace other instanceof checks
Thanks, @zeckdude!
This commit is contained in:
parent
430dae3a6f
commit
99e6def773
@ -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));
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user