happy-dom 20.0.6 → 20.0.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -23,7 +23,7 @@ const IS_RESOLUTION_REGEXP = /[<>]/;
23
23
  * Group 4: Second resolution operator.
24
24
  * Group 5: Second resolution value.
25
25
  */
26
- const RESOLUTION_REGEXP = /(?:([0-9]+[a-z]+) *(<|<=|>|=>)){0,1} *(width|height) *(?:(<|<=|>|=>) *([0-9]+[a-z]+)){0,1}/;
26
+ const RESOLUTION_REGEXP = /(?:([0-9]+[a-z]+) *(<|<=|>|>=)){0,1} *(width|height) *(?:(<|<=|>|>=) *([0-9]+[a-z]+)){0,1}/;
27
27
  /**
28
28
  * Utility for parsing a query string.
29
29
  */
package/lib/version.js CHANGED
@@ -1 +1 @@
1
- export default { version: '20.0.6' };
1
+ export default { version: '20.0.7' };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "happy-dom",
3
- "version": "20.0.6",
3
+ "version": "20.0.7",
4
4
  "license": "MIT",
5
5
  "homepage": "https://github.com/capricorn86/happy-dom",
6
6
  "repository": "https://github.com/capricorn86/happy-dom",
@@ -28,7 +28,7 @@ const IS_RESOLUTION_REGEXP = /[<>]/;
28
28
  * Group 5: Second resolution value.
29
29
  */
30
30
  const RESOLUTION_REGEXP =
31
- /(?:([0-9]+[a-z]+) *(<|<=|>|=>)){0,1} *(width|height) *(?:(<|<=|>|=>) *([0-9]+[a-z]+)){0,1}/;
31
+ /(?:([0-9]+[a-z]+) *(<|<=|>|>=)){0,1} *(width|height) *(?:(<|<=|>|>=) *([0-9]+[a-z]+)){0,1}/;
32
32
 
33
33
  /**
34
34
  * Utility for parsing a query string.