const browser = Bowser.getParser(window.navigator.userAgent);
if (browser.satisfies({chrome: '>118.01.1322' }))
// or with os
if (browser.satisfies({windows: { chrome: '>118.01.1322' } }))
@@ -2989,7 +2989,7 @@ Returns undefined when the browser is no described in the checkTree
diff --git a/docs/bowser.js.html b/docs/bowser.js.html
index 92479e1..d140e3e 100644
--- a/docs/bowser.js.html
+++ b/docs/bowser.js.html
@@ -105,7 +105,7 @@ export default Bowser;
diff --git a/docs/global.html b/docs/global.html
index 63340cb..e580535 100644
--- a/docs/global.html
+++ b/docs/global.html
@@ -1995,7 +1995,7 @@ like "iPhone" or "Kindle Fire HD 7"
diff --git a/docs/index.html b/docs/index.html
index df0ec08..b4410ef 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -157,7 +157,7 @@ list of aliases can be found in the file.
diff --git a/docs/parser.js.html b/docs/parser.js.html
index ab43e3e..b1579f1 100644
--- a/docs/parser.js.html
+++ b/docs/parser.js.html
@@ -385,7 +385,7 @@ class Parser {
* Returns `undefined` when the browser is no described in the checkTree object.
*
* @example
- * const browser = new Bowser(UA);
+ * const browser = Bowser.getParser(window.navigator.userAgent);
* if (browser.satisfies({chrome: '>118.01.1322' }))
* // or with os
* if (browser.satisfies({windows: { chrome: '>118.01.1322' } }))
@@ -546,7 +546,7 @@ export default Parser;
diff --git a/docs/utils.js.html b/docs/utils.js.html
index c1102e4..6b47314 100644
--- a/docs/utils.js.html
+++ b/docs/utils.js.html
@@ -260,7 +260,7 @@ export default class Utils {